Enum ArrayValue.Type
- java.lang.Object
-
- java.lang.Enum<ArrayValue.Type>
-
- software.amazon.awssdk.services.rdsdata.model.ArrayValue.Type
-
- All Implemented Interfaces:
Serializable,Comparable<ArrayValue.Type>
- Enclosing class:
- ArrayValue
public static enum ArrayValue.Type extends Enum<ArrayValue.Type>
- See Also:
ArrayValue.type()
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ARRAY_VALUESBOOLEAN_VALUESDOUBLE_VALUESLONG_VALUESSTRING_VALUESUNKNOWN_TO_SDK_VERSION
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ArrayValue.TypevalueOf(String name)Returns the enum constant of this type with the specified name.static ArrayValue.Type[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BOOLEAN_VALUES
public static final ArrayValue.Type BOOLEAN_VALUES
-
LONG_VALUES
public static final ArrayValue.Type LONG_VALUES
-
DOUBLE_VALUES
public static final ArrayValue.Type DOUBLE_VALUES
-
STRING_VALUES
public static final ArrayValue.Type STRING_VALUES
-
ARRAY_VALUES
public static final ArrayValue.Type ARRAY_VALUES
-
UNKNOWN_TO_SDK_VERSION
public static final ArrayValue.Type UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static ArrayValue.Type[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ArrayValue.Type c : ArrayValue.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ArrayValue.Type valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-