Class ShortStringConverter
- java.lang.Object
-
- software.amazon.awssdk.enhanced.dynamodb.internal.converter.string.ShortStringConverter
-
- All Implemented Interfaces:
PrimitiveConverter<Short>
,StringConverter<Short>
@ThreadSafe @Immutable public class ShortStringConverter extends Object implements StringConverter<Short>, PrimitiveConverter<Short>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ShortStringConverter
create()
Short
fromString(String string)
Convert the provided string into an object.EnhancedType<Short>
primitiveType()
The type supported by this converter.EnhancedType<Short>
type()
The type supported by this converter.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface software.amazon.awssdk.enhanced.dynamodb.internal.converter.StringConverter
toString
-
-
-
-
Method Detail
-
create
public static ShortStringConverter create()
-
type
public EnhancedType<Short> type()
Description copied from interface:StringConverter
The type supported by this converter.- Specified by:
type
in interfaceStringConverter<Short>
-
primitiveType
public EnhancedType<Short> primitiveType()
Description copied from interface:PrimitiveConverter
The type supported by this converter.- Specified by:
primitiveType
in interfacePrimitiveConverter<Short>
-
fromString
public Short fromString(String string)
Description copied from interface:StringConverter
Convert the provided string into an object.- Specified by:
fromString
in interfaceStringConverter<Short>
-
-