| Package | Description | 
|---|---|
| com.amazonaws.services.dynamodbv2.datamodeling | 
| Modifier and Type | Method and Description | 
|---|---|
DynamoDBQueryExpression<T> | 
DynamoDBQueryExpression.addExpressionAttributeNamesEntry(String key,
                                String value)
One or more substitution variables for simplifying complex expressions. 
 | 
DynamoDBQueryExpression<T> | 
DynamoDBQueryExpression.addExpressionAttributeValuesEntry(String key,
                                 AttributeValue value)
One or more values that can be substituted in an expression. 
 | 
DynamoDBQueryExpression<T> | 
DynamoDBQueryExpression.clearExpressionAttributeNamesEntries()
Removes all the entries added into ExpressionAttributeNames. 
 | 
DynamoDBQueryExpression<T> | 
DynamoDBQueryExpression.clearExpressionAttributeValuesEntries()
Removes all the entries added into ExpressionAttributeValues. 
 | 
DynamoDBQueryExpression<T> | 
DynamoDBQueryExpression.withConditionalOperator(ConditionalOperator conditionalOperator)
Sets the logical operator on the query filter conditions. 
 | 
DynamoDBQueryExpression<T> | 
DynamoDBQueryExpression.withConditionalOperator(String conditionalOperator)
Sets the logical operator on the query filter conditions. 
 | 
DynamoDBQueryExpression<T> | 
DynamoDBQueryExpression.withConsistentRead(boolean consistentRead)
Sets whether this query uses consistent reads and returns a pointer to
 this object for method-chaining. 
 | 
DynamoDBQueryExpression<T> | 
DynamoDBQueryExpression.withExclusiveStartKey(Map<String,AttributeValue> exclusiveStartKey)
Sets the exclusive start key for this query and returns a pointer to this
 object for method-chaining. 
 | 
DynamoDBQueryExpression<T> | 
DynamoDBQueryExpression.withExpressionAttributeNames(Map<String,String> expressionAttributeNames)
One or more substitution variables for simplifying complex expressions. 
 | 
DynamoDBQueryExpression<T> | 
DynamoDBQueryExpression.withExpressionAttributeValues(Map<String,AttributeValue> expressionAttributeValues)
One or more values that can be substituted in an expression. 
 | 
DynamoDBQueryExpression<T> | 
DynamoDBQueryExpression.withFilterExpression(String filterExpression)
Evaluates the query results and returns only the desired values. 
 | 
DynamoDBQueryExpression<T> | 
DynamoDBQueryExpression.withHashKeyValues(T hashKObject)
Sets the hash key value(s) for this query. 
 | 
DynamoDBQueryExpression<T> | 
DynamoDBQueryExpression.withIndexName(String indexName)
Sets the name of the index to be used by this query. 
 | 
DynamoDBQueryExpression<T> | 
DynamoDBQueryExpression.withLimit(Integer limit)
Sets the maximum number of items to retrieve in each service request to
 DynamoDB and returns a pointer to this object for method-chaining. 
 | 
DynamoDBQueryExpression<T> | 
DynamoDBQueryExpression.withQueryFilter(Map<String,Condition> queryFilter)
Sets the query filter applied on this query. 
 | 
DynamoDBQueryExpression<T> | 
DynamoDBQueryExpression.withQueryFilterEntry(String attributeName,
                    Condition condition)
Adds a new condition to the the query filter. 
 | 
DynamoDBQueryExpression<T> | 
DynamoDBQueryExpression.withRangeKeyCondition(String rangeKeyAttributeName,
                     Condition rangeKeyCondition)
Sets one range key condition for this query, using the attribute name of
 the range key. 
 | 
DynamoDBQueryExpression<T> | 
DynamoDBQueryExpression.withRangeKeyConditions(Map<String,Condition> rangeKeyConditions)
Sets the range key condition for this query. 
 | 
DynamoDBQueryExpression<T> | 
DynamoDBQueryExpression.withScanIndexForward(boolean scanIndexForward)
Sets whether this query scans forward and returns a pointer to this
 object for method-chaining. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
<T> int | 
DynamoDBMapper.count(Class<T> clazz,
     DynamoDBQueryExpression<T> queryExpression)
Evaluates the specified query expression and returns the count of matching
 items, without returning any of the actual item data, using the default configuration. 
 | 
<T> int | 
DynamoDBMapper.count(Class<T> clazz,
     DynamoDBQueryExpression<T> queryExpression,
     DynamoDBMapperConfig config)
Evaluates the specified query expression and returns the count of
 matching items, without returning any of the actual item data. 
 | 
<T> PaginatedQueryList<T> | 
DynamoDBMapper.query(Class<T> clazz,
     DynamoDBQueryExpression<T> queryExpression)
Queries an Amazon DynamoDB table and returns the matching results as an
 unmodifiable list of instantiated objects, using the default
 configuration. 
 | 
<T> PaginatedQueryList<T> | 
DynamoDBMapper.query(Class<T> clazz,
     DynamoDBQueryExpression<T> queryExpression,
     DynamoDBMapperConfig config)
Queries an Amazon DynamoDB table and returns the matching results as an
 unmodifiable list of instantiated objects. 
 | 
<T> QueryResultPage<T> | 
DynamoDBMapper.queryPage(Class<T> clazz,
         DynamoDBQueryExpression<T> queryExpression)
Queries an Amazon DynamoDB table and returns a single page of matching
 results. 
 | 
<T> QueryResultPage<T> | 
DynamoDBMapper.queryPage(Class<T> clazz,
         DynamoDBQueryExpression<T> queryExpression,
         DynamoDBMapperConfig config)
Queries an Amazon DynamoDB table and returns a single page of matching
 results. 
 | 
Copyright © 2014. All rights reserved.