Class OptionalDoubleStringConverter
java.lang.Object
software.amazon.awssdk.enhanced.dynamodb.internal.converter.string.OptionalDoubleStringConverter
- All Implemented Interfaces:
 StringConverter<OptionalDouble>
@ThreadSafe
@Immutable
public class OptionalDoubleStringConverter
extends Object
implements StringConverter<OptionalDouble>
A converter between 
OptionalDouble and String.- 
Method Summary
Modifier and TypeMethodDescriptioncreate()fromString(String string) Convert the provided string into an object.toString(OptionalDouble object) Convert the provided object into a string.type()The type supported by this converter. 
- 
Method Details
- 
create
 - 
type
Description copied from interface:StringConverterThe type supported by this converter.- Specified by:
 typein interfaceStringConverter<OptionalDouble>
 - 
toString
Description copied from interface:StringConverterConvert the provided object into a string.- Specified by:
 toStringin interfaceStringConverter<OptionalDouble>
 - 
fromString
Description copied from interface:StringConverterConvert the provided string into an object.- Specified by:
 fromStringin interfaceStringConverter<OptionalDouble>
 
 -