Uses of Class
com.amazonaws.services.dynamodb.datamodeling.DynamoDBQueryExpression

Packages that use DynamoDBQueryExpression
com.amazonaws.services.dynamodb.datamodeling   
 

Uses of DynamoDBQueryExpression in com.amazonaws.services.dynamodb.datamodeling
 

Methods in com.amazonaws.services.dynamodb.datamodeling that return DynamoDBQueryExpression
 DynamoDBQueryExpression DynamoDBQueryExpression.withConsistentRead(boolean consistentRead)
          Deprecated. Sets whether this query uses consistent reads and returns a pointer to this object for method-chaining.
 DynamoDBQueryExpression DynamoDBQueryExpression.withExclusiveStartKey(Key exclusiveStartKey)
          Deprecated. Sets the exclusive start key for this query and returns a pointer to this object for method-chaining.
 DynamoDBQueryExpression DynamoDBQueryExpression.withHashKeyValue(AttributeValue hashKeyValue)
          Deprecated. Sets the hash key value for this query to match and returns a pointer to this object for method-chaining.
 DynamoDBQueryExpression DynamoDBQueryExpression.withLimit(Integer limit)
          Deprecated. Sets the limit of items to return from this query and returns a pointer to this object for method-chaining.
 DynamoDBQueryExpression DynamoDBQueryExpression.withRangeKeyCondition(Condition rangeKeyCondition)
          Deprecated. Sets the range key condition for this query and returns a pointer to this object for method-chaining.
 DynamoDBQueryExpression DynamoDBQueryExpression.withScanIndexForward(boolean scanIndexForward)
          Deprecated. Sets whether this query scans forward and returns a pointer to this object for method-chaining.
 

Methods in com.amazonaws.services.dynamodb.datamodeling with parameters of type DynamoDBQueryExpression
 int DynamoDBMapper.count(Class<?> clazz, DynamoDBQueryExpression queryExpression)
          Deprecated. Evaluates the specified query expression and returns the count of matching items, without returning any of the actual item data, using the default configuration.
 int DynamoDBMapper.count(Class<?> clazz, DynamoDBQueryExpression queryExpression, DynamoDBMapperConfig config)
          Deprecated. 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 queryExpression)
          Deprecated. 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 queryExpression, DynamoDBMapperConfig config)
          Deprecated. 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 queryExpression)
          Deprecated. Queries an Amazon DynamoDB table and returns a single page of matching results.
<T> QueryResultPage<T>
DynamoDBMapper.queryPage(Class<T> clazz, DynamoDBQueryExpression queryExpression, DynamoDBMapperConfig config)
          Deprecated. Queries an Amazon DynamoDB table and returns a single page of matching results.
 



Copyright © 2016. All rights reserved.