Class ByteStringConverter
java.lang.Object
software.amazon.awssdk.enhanced.dynamodb.internal.converter.string.ByteStringConverter
- All Implemented Interfaces:
PrimitiveConverter<Byte>
,StringConverter<Byte>
@ThreadSafe
@Immutable
public class ByteStringConverter
extends Object
implements StringConverter<Byte>, PrimitiveConverter<Byte>
A converter between
BigInteger
and String
.
This converts values using Byte.toString()
and Byte.valueOf(String)
.
-
Method Summary
Modifier and TypeMethodDescriptionstatic ByteStringConverter
create()
fromString
(String string) Convert the provided string into an object.The type supported by this converter.type()
The type supported by this converter.Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface software.amazon.awssdk.enhanced.dynamodb.internal.converter.StringConverter
toString
-
Method Details
-
create
-
type
Description copied from interface:StringConverter
The type supported by this converter.- Specified by:
type
in interfaceStringConverter<Byte>
-
primitiveType
Description copied from interface:PrimitiveConverter
The type supported by this converter.- Specified by:
primitiveType
in interfacePrimitiveConverter<Byte>
-
fromString
Description copied from interface:StringConverter
Convert the provided string into an object.- Specified by:
fromString
in interfaceStringConverter<Byte>
-