public enum LCModelState extends java.lang.Enum<LCModelState>
Enum Constant and Description |
---|
ACTIVE |
INACTIVE |
RETIRED |
SUPERSEDED |
Modifier and Type | Method and Description |
---|---|
static LCModelState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LCModelState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LCModelState INACTIVE
public static final LCModelState ACTIVE
public static final LCModelState SUPERSEDED
public static final LCModelState RETIRED
public static LCModelState[] values()
for (LCModelState c : LCModelState.values()) System.out.println(c);
public static LCModelState 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