Class StaticAttributeType<T>
- java.lang.Object
-
- software.amazon.awssdk.enhanced.dynamodb.internal.mapper.StaticAttributeType<T>
-
- All Implemented Interfaces:
AttributeType<T>
public final class StaticAttributeType<T> extends Object implements AttributeType<T>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description TattributeValueToObject(AttributeValue attributeValue)AttributeValueTypeattributeValueType()static <T> AttributeType<T>create(AttributeConverter<T> attributeConverter)AttributeValueobjectToAttributeValue(T object)
-
-
-
Method Detail
-
create
public static <T> AttributeType<T> create(AttributeConverter<T> attributeConverter)
-
objectToAttributeValue
public AttributeValue objectToAttributeValue(T object)
- Specified by:
objectToAttributeValuein interfaceAttributeType<T>
-
attributeValueToObject
public T attributeValueToObject(AttributeValue attributeValue)
- Specified by:
attributeValueToObjectin interfaceAttributeType<T>
-
attributeValueType
public AttributeValueType attributeValueType()
- Specified by:
attributeValueTypein interfaceAttributeType<T>
-
-