public static enum Trade.LiquidityProvider extends java.lang.Enum<Trade.LiquidityProvider>
| Enum Constant and Description |
|---|
AUCTION |
BUYER |
REFERENCE |
SELLER |
SETTLEMENT |
| Modifier and Type | Method and Description |
|---|---|
static Trade.LiquidityProvider |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Trade.LiquidityProvider[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Trade.LiquidityProvider BUYER
public static final Trade.LiquidityProvider SELLER
public static final Trade.LiquidityProvider AUCTION
public static final Trade.LiquidityProvider REFERENCE
public static final Trade.LiquidityProvider SETTLEMENT
public static Trade.LiquidityProvider[] values()
for (Trade.LiquidityProvider c : Trade.LiquidityProvider.values()) System.out.println(c);
public static Trade.LiquidityProvider valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null