Class CustomUnmarshaller
java.lang.Object
com.amazonaws.services.dynamodbv2.datamodeling.unmarshallers.CustomUnmarshaller
- All Implemented Interfaces:
ArgumentUnmarshaller
An unmarshaller that delegates to an instance of a
DynamoDBMarshaller-derived custom marshaler.-
Constructor Summary
ConstructorsConstructorDescriptionCustomUnmarshaller(Class<?> targetClass, Class<? extends DynamoDBMarshaller<?>> unmarshallerClass) -
Method Summary
Modifier and TypeMethodDescriptionvoidtypeCheck(AttributeValue value, Method setter) Asserts that the value given can be processed using the setter given.unmarshall(AttributeValue value) Unmarshalls theAttributeValuegiven into an instance of the appropriate type, as determined byDynamoDBReflectorandDynamoDBMapper
-
Constructor Details
-
CustomUnmarshaller
public CustomUnmarshaller(Class<?> targetClass, Class<? extends DynamoDBMarshaller<?>> unmarshallerClass)
-
-
Method Details
-
unmarshall
Description copied from interface:ArgumentUnmarshallerUnmarshalls theAttributeValuegiven into an instance of the appropriate type, as determined byDynamoDBReflectorandDynamoDBMapper -
typeCheck
Description copied from interface:ArgumentUnmarshallerAsserts that the value given can be processed using the setter given.- Specified by:
typeCheckin interfaceArgumentUnmarshaller
-