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