Uses of Class
com.amazonaws.services.dynamodbv2.datamodeling.DynamoDBScanExpression

Packages that use DynamoDBScanExpression
com.amazonaws.services.dynamodbv2.datamodeling   
 

Uses of DynamoDBScanExpression in com.amazonaws.services.dynamodbv2.datamodeling
 

Methods in com.amazonaws.services.dynamodbv2.datamodeling that return DynamoDBScanExpression
 DynamoDBScanExpression DynamoDBScanExpression.withConditionalOperator(ConditionalOperator conditionalOperator)
          Sets the logical operator on the filter conditions of this scan and returns a pointer to this object for method-chaining.
 DynamoDBScanExpression DynamoDBScanExpression.withConditionalOperator(String conditionalOperator)
          Sets the logical operator on the filter conditions of this scan and returns a pointer to this object for method-chaining.
 DynamoDBScanExpression DynamoDBScanExpression.withExclusiveStartKey(Map<String,AttributeValue> exclusiveStartKey)
          Sets the exclusive start key for this scan and returns a pointer to this object for method-chaining.
 DynamoDBScanExpression DynamoDBScanExpression.withFilterConditionEntry(String attributeName, Condition condition)
          Adds a new filter condition to the current scan filter and returns a pointer to this object for method-chaining.
 DynamoDBScanExpression DynamoDBScanExpression.withLimit(Integer limit)
          Sets the limit of items to scan and returns a pointer to this object for method-chaining.
 DynamoDBScanExpression DynamoDBScanExpression.withScanFilter(Map<String,Condition> scanFilter)
          Sets the scan filter to the map of attribute names to conditions given and returns a pointer to this object for method-chaining.
 DynamoDBScanExpression DynamoDBScanExpression.withSegment(Integer segment)
          Sets the ID of the segment to be scanned and returns a pointer to this object for method-chaining.
 DynamoDBScanExpression DynamoDBScanExpression.withTotalSegments(Integer totalSegments)
          Sets the total number of segments into which the scan will be divided and returns a pointer to this object for method-chaining.
 

Methods in com.amazonaws.services.dynamodbv2.datamodeling with parameters of type DynamoDBScanExpression
 int DynamoDBMapper.count(Class<?> clazz, DynamoDBScanExpression scanExpression)
          Evaluates the specified scan 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, DynamoDBScanExpression scanExpression, DynamoDBMapperConfig config)
          Evaluates the specified scan expression and returns the count of matching items, without returning any of the actual item data.
<T> PaginatedParallelScanList<T>
DynamoDBMapper.parallelScan(Class<T> clazz, DynamoDBScanExpression scanExpression, int totalSegments)
          Scans through an Amazon DynamoDB table on logically partitioned segments in parallel and returns the matching results in one unmodifiable list of instantiated objects, using the default configuration.
<T> PaginatedParallelScanList<T>
DynamoDBMapper.parallelScan(Class<T> clazz, DynamoDBScanExpression scanExpression, int totalSegments, DynamoDBMapperConfig config)
          Scans through an Amazon DynamoDB table on logically partitioned segments in parallel.
<T> PaginatedScanList<T>
DynamoDBMapper.scan(Class<T> clazz, DynamoDBScanExpression scanExpression)
          Scans through an Amazon DynamoDB table and returns the matching results as an unmodifiable list of instantiated objects, using the default configuration.
<T> PaginatedScanList<T>
DynamoDBMapper.scan(Class<T> clazz, DynamoDBScanExpression scanExpression, DynamoDBMapperConfig config)
          Scans through an Amazon DynamoDB table and returns the matching results as an unmodifiable list of instantiated objects.
<T> ScanResultPage<T>
DynamoDBMapper.scanPage(Class<T> clazz, DynamoDBScanExpression scanExpression)
          Scans through an Amazon DynamoDB table and returns a single page of matching results.
<T> ScanResultPage<T>
DynamoDBMapper.scanPage(Class<T> clazz, DynamoDBScanExpression scanExpression, DynamoDBMapperConfig config)
          Scans through an Amazon DynamoDB table and returns a single page of matching results.
 



Copyright © 2016. All rights reserved.