public enum SideEffectType extends Enum<SideEffectType>
| Enum Constant and Description |
|---|
AUTO_REPAY |
MARGIN_BUY |
NO_SIDE_EFFECT |
| Modifier and Type | Method and Description |
|---|---|
static SideEffectType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SideEffectType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SideEffectType NO_SIDE_EFFECT
public static final SideEffectType MARGIN_BUY
public static final SideEffectType AUTO_REPAY
public static SideEffectType[] values()
for (SideEffectType c : SideEffectType.values()) System.out.println(c);
public static SideEffectType 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.