public enum StateTypeEnum extends Enum<StateTypeEnum>
| Enum Constant and Description |
|---|
CLSE |
DLTD |
DONE |
INAC |
INIT |
LIVE |
OPEN |
| Modifier and Type | Method and Description |
|---|---|
static StateTypeEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StateTypeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StateTypeEnum INIT
public static final StateTypeEnum LIVE
public static final StateTypeEnum INAC
public static final StateTypeEnum OPEN
public static final StateTypeEnum CLSE
public static final StateTypeEnum DONE
public static final StateTypeEnum DLTD
public static StateTypeEnum[] values()
for (StateTypeEnum c : StateTypeEnum.values()) System.out.println(c);
public static StateTypeEnum 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 nullCopyright © 2018. All rights reserved.