Class StringToValueConverter
- java.lang.Object
-
- software.amazon.awssdk.protocols.core.StringToValueConverter
-
public final class StringToValueConverter extends Object
Converter implementations that transform a String to a specified type.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interface
StringToValueConverter.SimpleStringToValue<T>
Simple interface to convert a String to another type.static interface
StringToValueConverter.StringToValue<T>
Interface to convert a String into another type.
-
Field Summary
Fields Modifier and Type Field Description static StringToValueConverter.SimpleStringToValue<BigDecimal>
TO_BIG_DECIMAL
static StringToValueConverter.SimpleStringToValue<Boolean>
TO_BOOLEAN
static StringToValueConverter.SimpleStringToValue<Double>
TO_DOUBLE
static StringToValueConverter.SimpleStringToValue<Float>
TO_FLOAT
static StringToValueConverter.SimpleStringToValue<Integer>
TO_INTEGER
static StringToValueConverter.SimpleStringToValue<Long>
TO_LONG
static StringToValueConverter.SimpleStringToValue<SdkBytes>
TO_SDK_BYTES
static StringToValueConverter.SimpleStringToValue<Short>
TO_SHORT
static StringToValueConverter.SimpleStringToValue<String>
TO_STRING
Identity converter.
-
-
-
Field Detail
-
TO_STRING
public static final StringToValueConverter.SimpleStringToValue<String> TO_STRING
Identity converter.
-
TO_INTEGER
public static final StringToValueConverter.SimpleStringToValue<Integer> TO_INTEGER
-
TO_LONG
public static final StringToValueConverter.SimpleStringToValue<Long> TO_LONG
-
TO_SHORT
public static final StringToValueConverter.SimpleStringToValue<Short> TO_SHORT
-
TO_FLOAT
public static final StringToValueConverter.SimpleStringToValue<Float> TO_FLOAT
-
TO_DOUBLE
public static final StringToValueConverter.SimpleStringToValue<Double> TO_DOUBLE
-
TO_BIG_DECIMAL
public static final StringToValueConverter.SimpleStringToValue<BigDecimal> TO_BIG_DECIMAL
-
TO_BOOLEAN
public static final StringToValueConverter.SimpleStringToValue<Boolean> TO_BOOLEAN
-
TO_SDK_BYTES
public static final StringToValueConverter.SimpleStringToValue<SdkBytes> TO_SDK_BYTES
-
-