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