public enum SessionState extends java.lang.Enum<SessionState>
| Enum Constant and Description |
|---|
AUCTION |
CLOSING_AUCTION |
CONTINUOUS |
MAINTENANCE |
NO_TRADING |
OPENING_AUCTION |
| Modifier and Type | Method and Description |
|---|---|
static SessionState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SessionState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SessionState OPENING_AUCTION
public static final SessionState CONTINUOUS
public static final SessionState AUCTION
public static final SessionState CLOSING_AUCTION
public static final SessionState NO_TRADING
public static final SessionState MAINTENANCE
public static SessionState[] values()
for (SessionState c : SessionState.values()) System.out.println(c);
public static SessionState valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null