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