Package | Description |
---|---|
com.amazonaws.mobileconnectors.dynamodbv2.dynamodbmapper |
Primary classes for interacting with the DynamoDB Object Mapper mobile connector for easily storing Java objects in the cloud.
|
com.amazonaws.mobileconnectors.dynamodbv2.dynamodbmapper.marshallers |
Standard implementations of
ArgumentMarshaller . |
Modifier and Type | Interface and Description |
---|---|
static interface |
ArgumentMarshaller.BinaryAttributeMarshaller
The binary attribute marshaller.
|
static interface |
ArgumentMarshaller.BinarySetAttributeMarshaller
The binary set attribute marshaller.
|
static interface |
ArgumentMarshaller.BooleanAttributeMarshaller
The boolean attribute marshaller.
|
static interface |
ArgumentMarshaller.ListAttributeMarshaller
The list attribute marshaller.
|
static interface |
ArgumentMarshaller.MapAttributeMarshaller
The map attribute marshaller.
|
static interface |
ArgumentMarshaller.NumberAttributeMarshaller
The number attribute marshaller.
|
static interface |
ArgumentMarshaller.NumberSetAttributeMarshaller
The number set attribute marshaller.
|
static interface |
ArgumentMarshaller.StringAttributeMarshaller
The boolean attribute marshaller.
|
static interface |
ArgumentMarshaller.StringSetAttributeMarshaller
The string set attribute marshaller.
|
Constructor and Description |
---|
DynamoDBMapperFieldModel(String dynamoDBAttributeName,
DynamoDBMapperFieldModel.DynamoDBAttributeType dynamoDBAttributeType,
ArgumentMarshaller argumentMarshaller)
Constructor.
|
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 |
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 |
ListToListMarshaller
A marshaller that marshals java list to dynamodb list.
|
class |
MapToMapMarshaller
A marshaller that marshalls java map to dynamodb map.
|
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
A marshaller that marshals object to map.
|
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. |
Modifier and Type | Method and Description |
---|---|
ArgumentMarshaller |
MapToMapMarshaller.getMemberMarshaller() |
ArgumentMarshaller |
ListToListMarshaller.getMemberMarshaller() |
Constructor and Description |
---|
ListToListMarshaller(ArgumentMarshaller memberMarshaller)
Constructor.
|
MapToMapMarshaller(ArgumentMarshaller memberMarshaller)
Constructor.
|
Copyright © 2019. All rights reserved.