public enum ExecInst extends Enum<ExecInst>
Enum Constant and Description |
---|
H
Persistent Order (FIX value 'H').
|
H_6
Persistent and Book or Cancel order (FIX value 'H 6').
|
H_Q
Persistent and non-persistent orders affected (FIX value 'H Q').
|
NO_VALUE
Identifies no value.
|
Q
Non-persistent Order (FIX value 'Q').
|
Q_6
Non-persistent and Book or Cancel order (FIX value 'Q 6').
|
Modifier and Type | Method and Description |
---|---|
static ExecInst |
forValue(byte value) |
byte |
getValue() |
static ExecInst |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExecInst[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExecInst NO_VALUE
public static final ExecInst H
public static final ExecInst Q
public static final ExecInst H_Q
public static final ExecInst H_6
public static final ExecInst Q_6
public static ExecInst[] values()
for (ExecInst c : ExecInst.values()) System.out.println(c);
public static ExecInst 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 ExecInst forValue(byte value)
Copyright © 2012–2024 Onix Solutions. All rights reserved.