public enum TradingProtocol extends java.lang.Enum<TradingProtocol>
Enum Constant and Description |
---|
BLOCK
A Block trade.
|
ESP
Executable Streaming Price.
|
ORDER
An Order.
|
RFS
Request For Stream.
|
SALES_RFS
Sales Trader Request for Stream
|
Modifier and Type | Method and Description |
---|---|
static TradingProtocol |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TradingProtocol[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TradingProtocol ESP
public static final TradingProtocol RFS
public static final TradingProtocol SALES_RFS
public static final TradingProtocol ORDER
public static final TradingProtocol BLOCK
public static TradingProtocol[] values()
for (TradingProtocol c : TradingProtocol.values()) System.out.println(c);
public static TradingProtocol 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 nullCopyright © 2019 Caplin Systems.