@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public enum ColumnStatisticsState extends Enum<ColumnStatisticsState>
Enum Constant and Description |
---|
FAILED |
RUNNING |
STARTING |
STOPPED |
SUCCEEDED |
Modifier and Type | Method and Description |
---|---|
static ColumnStatisticsState |
fromValue(String value)
Use this in place of valueOf.
|
String |
toString() |
static ColumnStatisticsState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ColumnStatisticsState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ColumnStatisticsState STARTING
public static final ColumnStatisticsState RUNNING
public static final ColumnStatisticsState SUCCEEDED
public static final ColumnStatisticsState FAILED
public static final ColumnStatisticsState STOPPED
public static ColumnStatisticsState[] values()
for (ColumnStatisticsState c : ColumnStatisticsState.values()) System.out.println(c);
public static ColumnStatisticsState 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 toString()
toString
in class Enum<ColumnStatisticsState>
public static ColumnStatisticsState fromValue(String value)
value
- real valueIllegalArgumentException
- If the specified value does not map to one of the known values in this enum.