| Enum Constant and Description |
|---|
_INVALID |
ENHANCEMENT
Price level modified from matching
|
MARKET_DATA
Price level created from original market data ('implied')
|
MF_BOOK
Price level contained in the internal MF order book
|
OBSCURE
Price level created from statistical liquidity profile
|
| Modifier and Type | Field and Description |
|---|---|
byte |
val |
| Modifier and Type | Method and Description |
|---|---|
byte |
get() |
static MDSource |
get(byte value) |
static java.util.Collection<MDSource> |
validValues() |
static MDSource |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MDSource[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MDSource MARKET_DATA
public static final MDSource OBSCURE
public static final MDSource ENHANCEMENT
public static final MDSource MF_BOOK
public static final MDSource _INVALID
public static MDSource[] values()
for (MDSource c : MDSource.values()) System.out.println(c);
public static MDSource 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 nullpublic byte get()
public static MDSource get(byte value)
public static java.util.Collection<MDSource> validValues()