Package | Description |
---|---|
com.amazonaws.services.dynamodbv2.datamodeling | |
com.amazonaws.services.dynamodbv2.datamodeling.marshallers |
Standard implementations of
ArgumentMarshaller . |
Modifier and Type | Interface and Description |
---|---|
static interface |
ArgumentMarshaller.BinaryAttributeMarshaller |
static interface |
ArgumentMarshaller.BinarySetAttributeMarshaller |
static interface |
ArgumentMarshaller.BooleanAttributeMarshaller |
static interface |
ArgumentMarshaller.ListAttributeMarshaller |
static interface |
ArgumentMarshaller.MapAttributeMarshaller |
static interface |
ArgumentMarshaller.NumberAttributeMarshaller |
static interface |
ArgumentMarshaller.NumberSetAttributeMarshaller |
static interface |
ArgumentMarshaller.StringAttributeMarshaller |
static interface |
ArgumentMarshaller.StringSetAttributeMarshaller |
Modifier and Type | Method and Description |
---|---|
ConversionSchemas.Builder |
ConversionSchemas.Builder.addFirstSetType(Class<?> clazz,
ArgumentMarshaller marshaller,
ArgumentUnmarshaller unmarshaller)
Adds marshaling of a Set of a type to the schema.
|
ConversionSchemas.Builder |
ConversionSchemas.Builder.addFirstType(Class<?> clazz,
ArgumentMarshaller marshaller,
ArgumentUnmarshaller unmarshaller)
Adds marshaling of a type to the schema.
|
Modifier and Type | Class and Description |
---|---|
class |
BooleanSetToNumberSetMarshaller
A legacy marshaller that marshals sets of Java
Booleans into DynamoDB
NumberSets, representing true as '1' and false as '0'. |
class |
BooleanToBooleanMarshaller
A marshaller that marshals Java
Boolean objects to Dynamodb-native
BOOL attribute values. |
class |
BooleanToNumberMarshaller
A legacy marshaller that marshals Java
Booleans into DynamoDB
Numbers, representing true as '1' and false as '0'. |
class |
ByteArraySetToBinarySetMarshaller
A marshaller that marshals sets of Java
byte[] s into DynamoDB
BinarySet attributes. |
class |
ByteArrayToBinaryMarshaller
A marshaller that marshals Java
byte[] s into DynamoDB Binary
attributes. |
class |
ByteBufferSetToBinarySetMarshaller
A marshaller that marshals sets of Java
ByteBuffer s into DynamoDB
BinarySet attributes. |
class |
ByteBufferToBinaryMarshaller
A marshaller that marshals Java
ByteBuffer s into DynamoDB Binary
attributes. |
class |
CalendarSetToStringSetMarshaller
A marshaller that marshals sets of Java
Calendar objects into
DynamoDB StringSets (in ISO 8601 format, ie {"2014-01-01T00:00:00Z", ...}). |
class |
CalendarToStringMarshaller
A marshaller that marshals Java
Calendar objects into DynamoDB
Strings (in ISO 8601 format, ie "2014-01-01T00:00:00Z"). |
class |
CollectionToListMarshaller |
class |
CustomMarshaller
A marshaller that delegates to an instance of a
DynamoDBMarshalling -derived custom marshaler. |
class |
DateSetToStringSetMarshaller
A marshaller that marshals sets of Java
Date objects into DynamoDB
StringSets (in ISO 8601 format, ie {"2014-01-01T00:00:00Z", ...}). |
class |
DateToStringMarshaller
A marshaller that marshals Java
Date objects into DynamoDB Strings
(in ISO 8601 format, ie "2014-01-01T00:00:00Z"). |
class |
MapToMapMarshaller |
class |
NumberSetToNumberSetMarshaller
A marshaller that marshals sets of Java
Number s into DynamoDB
NumberSets. |
class |
NumberToNumberMarshaller
A marshaller that marshals any Java
Number to a DynamoDB number. |
class |
ObjectSetToStringSetMarshaller
A legacy marshaller that marshals sets of arbitrary Java objects into
DynamoDB StringSets by using
String.valueOf(Object) . |
class |
ObjectToMapMarshaller |
class |
ObjectToStringMarshaller
A marshaller that marshals Java
Object objects into DynamoDB
Strings. |
class |
S3LinkToStringMarshaller
A marshaller that marshals
S3Link objects to DynamoDB Strings,
using a JSON encoding. |
class |
StringSetToStringSetMarshaller
A marshaller that marshals sets of Java
String s to DynamoDB
StringSets. |
class |
StringToStringMarshaller
A marshaller that marshals Java
String objects to DynamoDB Strings. |
class |
UUIDSetToStringSetMarshaller
A marshaller that marshals sets of Java
Object objects into
DynamoDB StringSets. |
Modifier and Type | Method and Description |
---|---|
ArgumentMarshaller |
CollectionToListMarshaller.getMemberMarshaller() |
ArgumentMarshaller |
MapToMapMarshaller.getMemberMarshaller() |
Constructor and Description |
---|
CollectionToListMarshaller(ArgumentMarshaller memberMarshaller) |
MapToMapMarshaller(ArgumentMarshaller memberMarshaller) |
Copyright © 2022. All rights reserved.