Class UUIDSetUnmarshaller
- java.lang.Object
-
- com.amazonaws.services.dynamodbv2.datamodeling.unmarshallers.UUIDSetUnmarshaller
-
- All Implemented Interfaces:
ArgumentUnmarshaller
public class UUIDSetUnmarshaller extends Object
An unmarshaller that unmarshals sets of UUIDs as sets of JavaUUIDobjects.- Author:
- Sergei Egorov
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static UUIDSetUnmarshallerinstance()voidtypeCheck(AttributeValue value, Method setter)Asserts that the value given can be processed using the setter given.Set<UUID>unmarshall(AttributeValue value)Unmarshalls theAttributeValuegiven into an instance of the appropriate type, as determined byDynamoDBReflectorandDynamoDBMapper
-
-
-
Method Detail
-
instance
public static UUIDSetUnmarshaller instance()
-
unmarshall
public Set<UUID> unmarshall(AttributeValue value)
Description copied from interface:ArgumentUnmarshallerUnmarshalls theAttributeValuegiven into an instance of the appropriate type, as determined byDynamoDBReflectorandDynamoDBMapper
-
typeCheck
public void typeCheck(AttributeValue value, Method setter)
Description copied from interface:ArgumentUnmarshallerAsserts that the value given can be processed using the setter given.- Specified by:
typeCheckin interfaceArgumentUnmarshaller
-
-