public enum CrossPrioritization extends Enum<CrossPrioritization>
Enum Constant and Description |
---|
BUY_SIDE
Buy side is prioritized.
|
NO_VALUE
Identifies no value.
|
SELL_SIDE
Sell side is prioritized.
|
Modifier and Type | Method and Description |
---|---|
static CrossPrioritization |
forValue(byte value) |
byte |
getValue() |
static CrossPrioritization |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CrossPrioritization[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CrossPrioritization NO_VALUE
public static final CrossPrioritization BUY_SIDE
public static final CrossPrioritization SELL_SIDE
public static CrossPrioritization[] values()
for (CrossPrioritization c : CrossPrioritization.values()) System.out.println(c);
public static CrossPrioritization 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 CrossPrioritization forValue(byte value)
Copyright © 2012–2024 Onix Solutions. All rights reserved.