public enum IncomeType extends Enum<IncomeType>
| Enum Constant and Description |
|---|
COMMISSION |
FUNDING_FEE |
INSURANCE_CLEAR |
REALIZED_PNL |
TRANSFER |
WELCOME_BONUS |
| Modifier and Type | Method and Description |
|---|---|
static IncomeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IncomeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IncomeType TRANSFER
public static final IncomeType WELCOME_BONUS
public static final IncomeType REALIZED_PNL
public static final IncomeType FUNDING_FEE
public static final IncomeType COMMISSION
public static final IncomeType INSURANCE_CLEAR
public static IncomeType[] values()
for (IncomeType c : IncomeType.values()) System.out.println(c);
public static IncomeType 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 © 2021. All rights reserved.