Class ValueToStringConverter
java.lang.Object
software.amazon.awssdk.protocols.core.ValueToStringConverter
Converts various types to Strings. Used for Query Param/Header/Path marshalling.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic interfaceSimple interface to convert a type to a String.static interfaceInterface to convert a type to a String. -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final ValueToStringConverter.SimpleValueToString<BigDecimal>static final ValueToStringConverter.SimpleValueToString<Boolean>Marshalls boolean as a literal 'true' or 'false' string.static final ValueToStringConverter.SimpleValueToString<Byte>static final ValueToStringConverter.SimpleValueToString<Double>static final ValueToStringConverter.SimpleValueToString<Float>static final ValueToStringConverter.SimpleValueToString<Integer>static final ValueToStringConverter.SimpleValueToString<Long>static final ValueToStringConverter.SimpleValueToString<SdkBytes>Marshalls bytes as a Base64 string.static final ValueToStringConverter.SimpleValueToString<Short>static final ValueToStringConverter.SimpleValueToString<String>Identity converter. -
Method Summary
-
Field Details
-
FROM_STRING
Identity converter. -
FROM_INTEGER
-
FROM_LONG
-
FROM_SHORT
-
FROM_BYTE
-
FROM_FLOAT
-
FROM_DOUBLE
-
FROM_BIG_DECIMAL
-
FROM_BOOLEAN
Marshalls boolean as a literal 'true' or 'false' string. -
FROM_SDK_BYTES
Marshalls bytes as a Base64 string.
-