Uses of Class
com.amazonaws.services.dynamodbv2.model.Condition
Packages that use Condition
Package
Description
-
Uses of Condition in com.amazonaws.services.dynamodbv2
Method parameters in com.amazonaws.services.dynamodbv2 with type arguments of type ConditionModifier and TypeMethodDescriptionAbstractAmazonDynamoDB.scan
(String tableName, List<String> attributesToGet, Map<String, Condition> scanFilter) AmazonDynamoDB.scan
(String tableName, List<String> attributesToGet, Map<String, Condition> scanFilter) Simplified method form for invoking the Scan operation.Simplified method form for invoking the Scan operation.AmazonDynamoDBClient.scan
(String tableName, List<String> attributesToGet, Map<String, Condition> scanFilter) AbstractAmazonDynamoDBAsync.scanAsync
(String tableName, List<String> attributesToGet, Map<String, Condition> scanFilter) Simplified method form for invoking the Scan operation.AbstractAmazonDynamoDBAsync.scanAsync
(String tableName, List<String> attributesToGet, Map<String, Condition> scanFilter, AsyncHandler<ScanRequest, ScanResult> asyncHandler) Simplified method form for invoking the Scan operation with an AsyncHandler.Simplified method form for invoking the Scan operation.AbstractAmazonDynamoDBAsync.scanAsync
(String tableName, Map<String, Condition> scanFilter, AsyncHandler<ScanRequest, ScanResult> asyncHandler) Simplified method form for invoking the Scan operation with an AsyncHandler.AmazonDynamoDBAsync.scanAsync
(String tableName, List<String> attributesToGet, Map<String, Condition> scanFilter) Simplified method form for invoking the Scan operation.AmazonDynamoDBAsync.scanAsync
(String tableName, List<String> attributesToGet, Map<String, Condition> scanFilter, AsyncHandler<ScanRequest, ScanResult> asyncHandler) Simplified method form for invoking the Scan operation with an AsyncHandler.Simplified method form for invoking the Scan operation.AmazonDynamoDBAsync.scanAsync
(String tableName, Map<String, Condition> scanFilter, AsyncHandler<ScanRequest, ScanResult> asyncHandler) Simplified method form for invoking the Scan operation with an AsyncHandler.AmazonDynamoDBAsyncClient.scanAsync
(String tableName, List<String> attributesToGet, Map<String, Condition> scanFilter) Simplified method form for invoking the Scan operation.AmazonDynamoDBAsyncClient.scanAsync
(String tableName, List<String> attributesToGet, Map<String, Condition> scanFilter, AsyncHandler<ScanRequest, ScanResult> asyncHandler) Simplified method form for invoking the Scan operation with an AsyncHandler.Simplified method form for invoking the Scan operation.AmazonDynamoDBAsyncClient.scanAsync
(String tableName, Map<String, Condition> scanFilter, AsyncHandler<ScanRequest, ScanResult> asyncHandler) Simplified method form for invoking the Scan operation with an AsyncHandler. -
Uses of Condition in com.amazonaws.services.dynamodbv2.datamodeling
Methods in com.amazonaws.services.dynamodbv2.datamodeling that return types with arguments of type ConditionModifier and TypeMethodDescriptionDynamoDBQueryExpression.getQueryFilter()
Returns the query filter applied on this query.DynamoDBQueryExpression.getRangeKeyConditions()
Gets the range key condition for this query.DynamoDBScanExpression.getScanFilter()
Returns the scan filter as a map of attribute names to conditions.Methods in com.amazonaws.services.dynamodbv2.datamodeling with parameters of type ConditionModifier and TypeMethodDescriptionvoid
DynamoDBScanExpression.addFilterCondition
(String attributeName, Condition condition) Adds a new filter condition to the current scan filter.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.DynamoDBQueryExpression.withQueryFilterEntry
(String attributeName, Condition condition) Adds a new condition to the the query filter.DynamoDBQueryExpression.withRangeKeyCondition
(String rangeKeyAttributeName, Condition rangeKeyCondition) Sets one range key condition for this query, using the attribute name of the range key.Method parameters in com.amazonaws.services.dynamodbv2.datamodeling with type arguments of type ConditionModifier and TypeMethodDescriptionvoid
DynamoDBQueryExpression.setQueryFilter
(Map<String, Condition> queryFilter) Sets the query filter applied on this query.void
DynamoDBQueryExpression.setRangeKeyConditions
(Map<String, Condition> rangeKeyConditions) Sets the range key condition for this query.void
DynamoDBScanExpression.setScanFilter
(Map<String, Condition> scanFilter) Sets the scan filter to the map of attribute names to conditions given.DynamoDBQueryExpression.withQueryFilter
(Map<String, Condition> queryFilter) Sets the query filter applied on this query.DynamoDBQueryExpression.withRangeKeyConditions
(Map<String, Condition> rangeKeyConditions) Sets the range key condition for this query.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. -
Uses of Condition in com.amazonaws.services.dynamodbv2.model
Methods in com.amazonaws.services.dynamodbv2.model that return ConditionModifier and TypeMethodDescriptionCondition.clone()
Condition.withAttributeValueList
(AttributeValue... attributeValueList) One or more values to evaluate against the supplied attribute.Condition.withAttributeValueList
(Collection<AttributeValue> attributeValueList) One or more values to evaluate against the supplied attribute.Condition.withComparisonOperator
(ComparisonOperator comparisonOperator) A comparator for evaluating attributes.Condition.withComparisonOperator
(String comparisonOperator) A comparator for evaluating attributes.Methods in com.amazonaws.services.dynamodbv2.model that return types with arguments of type ConditionModifier and TypeMethodDescriptionQueryRequest.getKeyConditions()
QueryRequest.getQueryFilter()
ScanRequest.getScanFilter()
Methods in com.amazonaws.services.dynamodbv2.model with parameters of type ConditionModifier and TypeMethodDescriptionQueryRequest.addKeyConditionsEntry
(String key, Condition value) QueryRequest.addQueryFilterEntry
(String key, Condition value) ScanRequest.addScanFilterEntry
(String key, Condition value) Method parameters in com.amazonaws.services.dynamodbv2.model with type arguments of type ConditionModifier and TypeMethodDescriptionvoid
QueryRequest.setKeyConditions
(Map<String, Condition> keyConditions) void
QueryRequest.setQueryFilter
(Map<String, Condition> queryFilter) void
ScanRequest.setScanFilter
(Map<String, Condition> scanFilter) QueryRequest.withKeyConditions
(Map<String, Condition> keyConditions) QueryRequest.withQueryFilter
(Map<String, Condition> queryFilter) ScanRequest.withScanFilter
(Map<String, Condition> scanFilter)