Class ObjectUnmarshaller
- java.lang.Object
-
- com.amazonaws.services.dynamodbv2.datamodeling.unmarshallers.ObjectUnmarshaller
-
- All Implemented Interfaces:
ArgumentUnmarshaller
public class ObjectUnmarshaller extends Object
-
-
Constructor Summary
Constructors Constructor Description ObjectUnmarshaller(ItemConverter converter, Class<?> clazz)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ObjectUnmarshaller
instance()
void
typeCheck(AttributeValue value, Method setter)
Asserts that the value given can be processed using the setter given.Object
unmarshall(AttributeValue value)
Unmarshalls theAttributeValue
given into an instance of the appropriate type, as determined byDynamoDBReflector
andDynamoDBMapper
-
-
-
Constructor Detail
-
ObjectUnmarshaller
public ObjectUnmarshaller(ItemConverter converter, Class<?> clazz)
-
-
Method Detail
-
instance
public static ObjectUnmarshaller instance()
-
unmarshall
public Object unmarshall(AttributeValue value) throws ParseException
Description copied from interface:ArgumentUnmarshaller
Unmarshalls theAttributeValue
given into an instance of the appropriate type, as determined byDynamoDBReflector
andDynamoDBMapper
- Throws:
ParseException
- when unable to parse a date string
-
typeCheck
public void typeCheck(AttributeValue value, Method setter)
Description copied from interface:ArgumentUnmarshaller
Asserts that the value given can be processed using the setter given.- Specified by:
typeCheck
in interfaceArgumentUnmarshaller
-
-