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