public enum CrossedIndicator extends Enum<CrossedIndicator>
Enum Constant and Description |
---|
CROSS_REJECTED
Cross rejected (Order subject to crossing and match prevented).
|
NO_CROSSING
No crossing (Order not subject to crossing).
|
NO_VALUE
Identifies no value.
|
Modifier and Type | Method and Description |
---|---|
static CrossedIndicator |
forValue(byte value) |
byte |
getValue() |
static CrossedIndicator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CrossedIndicator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CrossedIndicator NO_VALUE
public static final CrossedIndicator NO_CROSSING
public static final CrossedIndicator CROSS_REJECTED
public static CrossedIndicator[] values()
for (CrossedIndicator c : CrossedIndicator.values()) System.out.println(c);
public static CrossedIndicator 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 CrossedIndicator forValue(byte value)
Copyright © 2012–2024 Onix Solutions. All rights reserved.