public enum AccountFeeChargeMode extends java.lang.Enum<AccountFeeChargeMode>
| Enum Constant and Description |
|---|
BALANCE_PERCENTAGE |
CUSTOM |
FIXED |
NEGATIVE_BALANCE_PERCENTAGE |
NEGATIVE_VOLUME_PERCENTAGE |
VOLUME_PERCENTAGE |
| Modifier and Type | Method and Description |
|---|---|
boolean |
isBalance() |
boolean |
isCustom() |
boolean |
isFixed() |
boolean |
isNegative() |
boolean |
isPositive() |
boolean |
isVolume() |
static AccountFeeChargeMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AccountFeeChargeMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AccountFeeChargeMode FIXED
public static final AccountFeeChargeMode VOLUME_PERCENTAGE
public static final AccountFeeChargeMode NEGATIVE_VOLUME_PERCENTAGE
public static final AccountFeeChargeMode BALANCE_PERCENTAGE
public static final AccountFeeChargeMode NEGATIVE_BALANCE_PERCENTAGE
public static final AccountFeeChargeMode CUSTOM
public static AccountFeeChargeMode[] values()
for (AccountFeeChargeMode c : AccountFeeChargeMode.values()) System.out.println(c);
public static AccountFeeChargeMode valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic boolean isBalance()
public boolean isCustom()
public boolean isFixed()
public boolean isNegative()
public boolean isPositive()
public boolean isVolume()