public enum AccountChangeModeEnum extends Enum<AccountChangeModeEnum>
| Enum Constant and Description |
|---|
BALANCE
Subscribe balance change
|
TOTAL
Subscribe TOTAL balance, total balance is the sum of available and frozen
|
| Modifier and Type | Method and Description |
|---|---|
String |
getCode() |
static AccountChangeModeEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AccountChangeModeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AccountChangeModeEnum BALANCE
public static final AccountChangeModeEnum TOTAL
public static AccountChangeModeEnum[] values()
for (AccountChangeModeEnum c : AccountChangeModeEnum.values()) System.out.println(c);
public static AccountChangeModeEnum 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 nullpublic String getCode()
Copyright © 2021. All rights reserved.