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