public enum AccountChangeType extends Enum<AccountChangeType>
| Enum Constant and Description |
|---|
CANCELORDER |
FEE |
INTEREST |
INVALID |
LOAN |
NEWORDER |
OTHER |
REFUND |
REPAY |
TRADE |
TRANSFER |
| Modifier and Type | Method and Description |
|---|---|
static AccountChangeType |
lookup(String name) |
String |
toString() |
static AccountChangeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AccountChangeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AccountChangeType NEWORDER
public static final AccountChangeType TRADE
public static final AccountChangeType REFUND
public static final AccountChangeType CANCELORDER
public static final AccountChangeType FEE
public static final AccountChangeType TRANSFER
public static final AccountChangeType LOAN
public static final AccountChangeType INTEREST
public static final AccountChangeType REPAY
public static final AccountChangeType OTHER
public static final AccountChangeType INVALID
public static AccountChangeType[] values()
for (AccountChangeType c : AccountChangeType.values()) System.out.println(c);
public static AccountChangeType 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 toString()
toString in class Enum<AccountChangeType>public static AccountChangeType lookup(String name)
Copyright © 2021. All rights reserved.