public enum TableProviderStatus extends Enum<TableProviderStatus>
| Enum Constant and Description | 
|---|
CONSTRUCTED  | 
INITIALIZED  | 
NEEDS_RESTART  | 
RUNNING  | 
SHUTTING_DOWN  | 
| Modifier and Type | Method and Description | 
|---|---|
static TableProviderStatus | 
valueOf(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(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 © 2015–2019 Cloud Software Group, Inc.. All rights reserved.