Package com.amazonaws.services.dynamodbv2.datamodeling.marshallers
Standard implementations of
ArgumentMarshaller
.-
Class Summary Class Description BooleanSetToNumberSetMarshaller A legacy marshaller that marshals sets of JavaBooleans
into DynamoDB NumberSets, representingtrue
as '1' andfalse
as '0'.BooleanToBooleanMarshaller A marshaller that marshals JavaBoolean
objects to Dynamodb-nativeBOOL
attribute values.BooleanToNumberMarshaller A legacy marshaller that marshals JavaBooleans
into DynamoDB Numbers, representingtrue
as '1' andfalse
as '0'.ByteArraySetToBinarySetMarshaller A marshaller that marshals sets of Javabyte[]
s into DynamoDB BinarySet attributes.ByteArrayToBinaryMarshaller A marshaller that marshals Javabyte[]
s into DynamoDB Binary attributes.ByteBufferSetToBinarySetMarshaller A marshaller that marshals sets of JavaByteBuffer
s into DynamoDB BinarySet attributes.ByteBufferToBinaryMarshaller A marshaller that marshals JavaByteBuffer
s into DynamoDB Binary attributes.CalendarSetToStringSetMarshaller A marshaller that marshals sets of JavaCalendar
objects into DynamoDB StringSets (in ISO 8601 format, ie {"2014-01-01T00:00:00Z", ...}).CalendarToStringMarshaller A marshaller that marshals JavaCalendar
objects into DynamoDB Strings (in ISO 8601 format, ie "2014-01-01T00:00:00Z").CollectionToListMarshaller CustomMarshaller A marshaller that delegates to an instance of aDynamoDBMarshalling
-derived custom marshaler.DateSetToStringSetMarshaller A marshaller that marshals sets of JavaDate
objects into DynamoDB StringSets (in ISO 8601 format, ie {"2014-01-01T00:00:00Z", ...}).DateToStringMarshaller A marshaller that marshals JavaDate
objects into DynamoDB Strings (in ISO 8601 format, ie "2014-01-01T00:00:00Z").MapToMapMarshaller NumberSetToNumberSetMarshaller A marshaller that marshals sets of JavaNumber
s into DynamoDB NumberSets.NumberToNumberMarshaller A marshaller that marshals any JavaNumber
to a DynamoDB number.ObjectSetToStringSetMarshaller A legacy marshaller that marshals sets of arbitrary Java objects into DynamoDB StringSets by usingString.valueOf(Object)
.ObjectToMapMarshaller ObjectToStringMarshaller A marshaller that marshals JavaObject
objects into DynamoDB Strings.S3LinkToStringMarshaller A marshaller that marshalsS3Link
objects to DynamoDB Strings, using a JSON encoding.StringSetToStringSetMarshaller A marshaller that marshals sets of JavaString
s to DynamoDB StringSets.StringToStringMarshaller A marshaller that marshals JavaString
objects to DynamoDB Strings.UUIDSetToStringSetMarshaller A marshaller that marshals sets of JavaObject
objects into DynamoDB StringSets.