public enum DetailStatus extends Enum<DetailStatus>
| Enum Constant and Description |
|---|
ALL
全部。需要同时查询转账成功和转账失败的明细单
|
FAIL
转账失败。只查询转账失败的明细单
|
SUCCESS
转账成功。只查询转账成功的明细单
|
| Modifier and Type | Method and Description |
|---|---|
static DetailStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DetailStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DetailStatus ALL
public static final DetailStatus SUCCESS
public static final DetailStatus FAIL
public static DetailStatus[] values()
for (DetailStatus c : DetailStatus.values()) System.out.println(c);
public static DetailStatus valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2023. All rights reserved.