public static enum Table.TableStatus extends Enum<Table.TableStatus>
Enum Constant and Description |
---|
DEFINED |
DISABLED |
ENABLED |
ERROR |
LOADING |
Modifier and Type | Method and Description |
---|---|
String |
getReadable() |
static Table.TableStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Table.TableStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Table.TableStatus ENABLED
public static final Table.TableStatus DISABLED
public static final Table.TableStatus DEFINED
public static final Table.TableStatus LOADING
public static final Table.TableStatus ERROR
public static Table.TableStatus[] values()
for (Table.TableStatus c : Table.TableStatus.values()) System.out.println(c);
public static Table.TableStatus 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 nullpublic String getReadable()