| Enum Constant and Description |
|---|
_INVALID |
AGGREGATE
The feed sends aggregate market data
|
BATCHING
The feed supports batching.
|
DROPCOPY
The feed sends drop copy messages.
|
FOK
The feed supports Fill Or Kill (FOK) orders.
|
GTC
The feed supports Good Till Cancel (GTC) orders.
|
IOC
The feed supports Immediate Or Cancel (IOC) orders.
|
MARKET_DATA
The feed supports market data.
|
MARKET_MAKING
The feed if for market making only.
|
TRADING
The feed supports trading.
|
| Modifier and Type | Field and Description |
|---|---|
byte |
val |
| Modifier and Type | Method and Description |
|---|---|
byte |
get() |
static FeedFlag |
get(byte value) |
static java.util.Collection<FeedFlag> |
validValues() |
static FeedFlag |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FeedFlag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FeedFlag MARKET_DATA
public static final FeedFlag TRADING
public static final FeedFlag BATCHING
public static final FeedFlag DROPCOPY
public static final FeedFlag GTC
public static final FeedFlag IOC
public static final FeedFlag FOK
public static final FeedFlag AGGREGATE
public static final FeedFlag MARKET_MAKING
public static final FeedFlag _INVALID
public static FeedFlag[] values()
for (FeedFlag c : FeedFlag.values()) System.out.println(c);
public static FeedFlag 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 FeedFlag get(byte value)
public static java.util.Collection<FeedFlag> validValues()