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