public enum FundFlowAccountType extends Enum<FundFlowAccountType>
| Enum Constant and Description |
|---|
BASIC
基本账户
|
FEES
手续费账户
|
OPERATION
运营账户
|
| Modifier and Type | Method and Description |
|---|---|
static FundFlowAccountType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FundFlowAccountType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FundFlowAccountType BASIC
public static final FundFlowAccountType OPERATION
public static final FundFlowAccountType FEES
public static FundFlowAccountType[] values()
for (FundFlowAccountType c : FundFlowAccountType.values()) System.out.println(c);
public static FundFlowAccountType 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.