public enum OrdStatus extends Enum<OrdStatus>
Enum Constant and Description |
---|
CANCELED
Cancelled.
|
FILLED
Filled.
|
NEW
New.
|
NO_VALUE
Identifies no value.
|
PARTIALLY_FILLED
Partially filled.
|
PENDING_CANCEL
Pending Cancel (i.e.
|
SUSPENDED
Suspended.
|
Modifier and Type | Method and Description |
---|---|
static OrdStatus |
forValue(char value) |
char |
getValue() |
static OrdStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OrdStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OrdStatus NO_VALUE
public static final OrdStatus NEW
public static final OrdStatus PARTIALLY_FILLED
public static final OrdStatus FILLED
public static final OrdStatus CANCELED
public static final OrdStatus PENDING_CANCEL
public static final OrdStatus SUSPENDED
public static OrdStatus[] values()
for (OrdStatus c : OrdStatus.values()) System.out.println(c);
public static OrdStatus 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 char getValue()
public static OrdStatus forValue(char value)
Copyright © 2012–2024 Onix Solutions. All rights reserved.