Class SdkBytesStringConverter
- java.lang.Object
-
- software.amazon.awssdk.enhanced.dynamodb.internal.converter.string.SdkBytesStringConverter
-
- All Implemented Interfaces:
StringConverter<SdkBytes>
@ThreadSafe @Immutable public class SdkBytesStringConverter extends Object implements StringConverter<SdkBytes>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SdkBytesStringConvertercreate()SdkBytesfromString(String string)Convert the provided string into an object.StringtoString(SdkBytes object)Convert the provided object into a string.EnhancedType<SdkBytes>type()The type supported by this converter.
-
-
-
Method Detail
-
create
public static SdkBytesStringConverter create()
-
type
public EnhancedType<SdkBytes> type()
Description copied from interface:StringConverterThe type supported by this converter.- Specified by:
typein interfaceStringConverter<SdkBytes>
-
toString
public String toString(SdkBytes object)
Description copied from interface:StringConverterConvert the provided object into a string.- Specified by:
toStringin interfaceStringConverter<SdkBytes>
-
fromString
public SdkBytes fromString(String string)
Description copied from interface:StringConverterConvert the provided string into an object.- Specified by:
fromStringin interfaceStringConverter<SdkBytes>
-
-