|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use DynamoDBQueryExpression | |
---|---|
com.amazonaws.services.dynamodbv2.datamodeling |
Uses of DynamoDBQueryExpression in com.amazonaws.services.dynamodbv2.datamodeling |
---|
Methods in com.amazonaws.services.dynamodbv2.datamodeling that return DynamoDBQueryExpression | |
---|---|
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.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 limit of items to return from this query 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. |
Methods in com.amazonaws.services.dynamodbv2.datamodeling with parameters of type DynamoDBQueryExpression | ||
---|---|---|
|
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. |
|
|
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. |
|
|
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. |
|
|
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. |
|
|
DynamoDBMapper.queryPage(Class<T> clazz,
DynamoDBQueryExpression<T> queryExpression)
Queries an Amazon DynamoDB table and returns a single page of matching results. |
|
|
DynamoDBMapper.queryPage(Class<T> clazz,
DynamoDBQueryExpression<T> queryExpression,
DynamoDBMapperConfig config)
Queries an Amazon DynamoDB table and returns a single page of matching results. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |