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