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