Package | Description |
---|---|
com.amazonaws.services.dynamodbv2.datamodeling |
Modifier and Type | Class and Description |
---|---|
private static class |
AttributeTransformerChain.ProxyParameters<T>
A
Parameters proxy that intercepts calls to
getAttributeValues and overrides the return value. |
private static class |
DynamoDBMapper.TransformerParameters<T>
The one true implementation of AttributeTransformer.Parameters.
|
Modifier and Type | Field and Description |
---|---|
private AttributeTransformer.Parameters<T> |
AttributeTransformerChain.ProxyParameters.delegate |
Modifier and Type | Method and Description |
---|---|
private <T> AttributeTransformer.Parameters<T> |
DynamoDBMapper.toParameters(java.util.Map<java.lang.String,AttributeValue> attributeValues,
boolean partialUpdate,
java.lang.Class<T> modelClass,
java.lang.String tableName,
DynamoDBMapperConfig mapperConfig) |
private <T> AttributeTransformer.Parameters<T> |
DynamoDBMapper.toParameters(java.util.Map<java.lang.String,AttributeValue> attributeValues,
java.lang.Class<T> modelClass,
java.lang.String tableName,
DynamoDBMapperConfig mapperConfig) |
Modifier and Type | Method and Description |
---|---|
(package private) <T> java.util.List<AttributeTransformer.Parameters<T>> |
DynamoDBMapper.toParameters(java.util.List<java.util.Map<java.lang.String,AttributeValue>> attributeValues,
java.lang.Class<T> modelClass,
java.lang.String tableName,
DynamoDBMapperConfig mapperConfig) |
Modifier and Type | Method and Description |
---|---|
private <T> T |
DynamoDBMapper.privateMarshallIntoObject(ItemConverter converter,
AttributeTransformer.Parameters<T> parameters)
The one true implementation of marshallIntoObject.
|
java.util.Map<java.lang.String,AttributeValue> |
AttributeTransformerChain.transform(AttributeTransformer.Parameters<?> parameters) |
java.util.Map<java.lang.String,AttributeValue> |
AttributeTransformer.transform(AttributeTransformer.Parameters<?> parameters)
Transforms the input set of attribute values derived from the model
object before writing them into DynamoDB.
|
private java.util.Map<java.lang.String,AttributeValue> |
DynamoDBMapper.transformAttributes(AttributeTransformer.Parameters<?> parameters) |
java.util.Map<java.lang.String,AttributeValue> |
AttributeTransformerChain.untransform(AttributeTransformer.Parameters<?> parameters) |
java.util.Map<java.lang.String,AttributeValue> |
AttributeTransformer.untransform(AttributeTransformer.Parameters<?> parameters)
Untransform the input set of attribute values read from DynamoDB before
creating a model object from them.
|
private java.util.Map<java.lang.String,AttributeValue> |
DynamoDBMapper.untransformAttributes(AttributeTransformer.Parameters<?> parameters) |
Modifier and Type | Method and Description |
---|---|
(package private) <T> java.util.List<T> |
DynamoDBMapper.marshallIntoObjects(java.util.List<AttributeTransformer.Parameters<T>> parameters)
A replacement for
DynamoDBMapper.marshallIntoObjects(Class, List) that takes
an extra set of parameters to be tunneled through to
privateMarshalIntoObject (if nothing along the way is
overridden). |
Constructor and Description |
---|
ProxyParameters(AttributeTransformer.Parameters<T> delegate)
Create a new proxy wrapping the given
Parameters object. |