public enum TradePublishIndicator extends Enum<TradePublishIndicator>
Enum Constant and Description |
---|
DEFERRED_PUBLICATION
Deferred publication to market.
|
DO_NOT_PUBLISH_TRADE
Do not publish trade.
|
NO_VALUE
Identifies no value.
|
PUBLISH_TRADE
Publish trade.
|
PUBLISHED
Published to market.
|
Modifier and Type | Method and Description |
---|---|
static TradePublishIndicator |
forValue(byte value) |
byte |
getValue() |
static TradePublishIndicator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TradePublishIndicator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TradePublishIndicator NO_VALUE
public static final TradePublishIndicator DO_NOT_PUBLISH_TRADE
public static final TradePublishIndicator PUBLISH_TRADE
public static final TradePublishIndicator DEFERRED_PUBLICATION
public static final TradePublishIndicator PUBLISHED
public static TradePublishIndicator[] values()
for (TradePublishIndicator c : TradePublishIndicator.values()) System.out.println(c);
public static TradePublishIndicator 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 nullpublic byte getValue()
public static TradePublishIndicator forValue(byte value)
Copyright © 2012–2024 Onix Solutions. All rights reserved.