Package | Description |
---|---|
com.amazonaws.services.dynamodbv2 |
|
com.amazonaws.services.dynamodbv2.datamodeling | |
com.amazonaws.services.dynamodbv2.document | |
com.amazonaws.services.dynamodbv2.document.internal | |
com.amazonaws.services.dynamodbv2.model |
Modifier and Type | Method and Description |
---|---|
ScanResult |
AmazonDynamoDBClient.scan(String tableName,
List<String> attributesToGet,
Map<String,Condition> scanFilter) |
ScanResult |
AmazonDynamoDB.scan(String tableName,
List<String> attributesToGet,
Map<String,Condition> scanFilter)
Simplified method form for invoking the Scan operation.
|
ScanResult |
AbstractAmazonDynamoDB.scan(String tableName,
List<String> attributesToGet,
Map<String,Condition> scanFilter) |
ScanResult |
AmazonDynamoDBClient.scan(String tableName,
Map<String,Condition> scanFilter) |
ScanResult |
AmazonDynamoDB.scan(String tableName,
Map<String,Condition> scanFilter)
Simplified method form for invoking the Scan operation.
|
ScanResult |
AbstractAmazonDynamoDB.scan(String tableName,
Map<String,Condition> scanFilter) |
Future<ScanResult> |
AbstractAmazonDynamoDBAsync.scanAsync(String tableName,
List<String> attributesToGet,
Map<String,Condition> scanFilter)
Simplified method form for invoking the Scan operation.
|
Future<ScanResult> |
AmazonDynamoDBAsync.scanAsync(String tableName,
List<String> attributesToGet,
Map<String,Condition> scanFilter)
Simplified method form for invoking the Scan operation.
|
Future<ScanResult> |
AmazonDynamoDBAsyncClient.scanAsync(String tableName,
List<String> attributesToGet,
Map<String,Condition> scanFilter)
Simplified method form for invoking the Scan operation.
|
Future<ScanResult> |
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.
|
Future<ScanResult> |
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.
|
Future<ScanResult> |
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.
|
Future<ScanResult> |
AbstractAmazonDynamoDBAsync.scanAsync(String tableName,
Map<String,Condition> scanFilter)
Simplified method form for invoking the Scan operation.
|
Future<ScanResult> |
AmazonDynamoDBAsync.scanAsync(String tableName,
Map<String,Condition> scanFilter)
Simplified method form for invoking the Scan operation.
|
Future<ScanResult> |
AmazonDynamoDBAsyncClient.scanAsync(String tableName,
Map<String,Condition> scanFilter)
Simplified method form for invoking the Scan operation.
|
Future<ScanResult> |
AbstractAmazonDynamoDBAsync.scanAsync(String tableName,
Map<String,Condition> scanFilter,
AsyncHandler<ScanRequest,ScanResult> asyncHandler)
Simplified method form for invoking the Scan operation with an AsyncHandler.
|
Future<ScanResult> |
AmazonDynamoDBAsync.scanAsync(String tableName,
Map<String,Condition> scanFilter,
AsyncHandler<ScanRequest,ScanResult> asyncHandler)
Simplified method form for invoking the Scan operation with an AsyncHandler.
|
Future<ScanResult> |
AmazonDynamoDBAsyncClient.scanAsync(String tableName,
Map<String,Condition> scanFilter,
AsyncHandler<ScanRequest,ScanResult> asyncHandler)
Simplified method form for invoking the Scan operation with an AsyncHandler.
|
Modifier and Type | Method and Description |
---|---|
Condition |
DynamoDBMapperFieldModel.beginsWith(V value)
Creates a condition which filters on the specified value.
|
Condition |
DynamoDBMapperFieldModel.between(V lo,
V hi)
Creates a condition which filters on the specified values.
|
Condition |
DynamoDBMapperFieldModel.betweenAny(V lo,
V hi)
Creates a condition which filters on any non-null argument; if
lo
is null a LE condition is applied on hi , if hi
is null a GE condition is applied on lo . |
Condition |
DynamoDBMapperFieldModel.contains(V value)
Creates a condition which filters on the specified value.
|
Condition |
DynamoDBMapperFieldModel.eq(V value)
Creates a condition which filters on the specified value.
|
Condition |
DynamoDBMapperFieldModel.ge(V value)
Creates a condition which filters on the specified value.
|
Condition |
DynamoDBMapperFieldModel.gt(V value)
Creates a condition which filters on the specified value.
|
Condition |
DynamoDBMapperFieldModel.in(Collection<V> values)
Creates a condition which filters on the specified values.
|
Condition |
DynamoDBMapperFieldModel.in(V... values)
Creates a condition which filters on the specified values.
|
Condition |
DynamoDBMapperFieldModel.isNull()
Creates a condition which filters on the specified value.
|
Condition |
DynamoDBMapperFieldModel.le(V value)
Creates a condition which filters on the specified value.
|
Condition |
DynamoDBMapperFieldModel.lt(V value)
Creates a condition which filters on the specified value.
|
Condition |
DynamoDBMapperFieldModel.ne(V value)
Creates a condition which filters on the specified value.
|
Condition |
DynamoDBMapperFieldModel.notContains(V value)
Creates a condition which filters on the specified value.
|
Condition |
DynamoDBMapperFieldModel.notNull()
Creates a condition which filters on the specified value.
|
Modifier and Type | Method and Description |
---|---|
Map<String,Condition> |
DynamoDBQueryExpression.getQueryFilter()
Returns the query filter applied on this query.
|
Map<String,Condition> |
DynamoDBQueryExpression.getRangeKeyConditions()
Gets the range key condition for this query.
|
Map<String,Condition> |
DynamoDBScanExpression.getScanFilter()
Returns the scan filter as a map of attribute names to conditions.
|
Modifier and Type | Method and Description |
---|---|
void |
DynamoDBScanExpression.addFilterCondition(String attributeName,
Condition condition)
Adds a new filter condition to the current scan filter.
|
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.
|
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.
|
Modifier and Type | Method and Description |
---|---|
void |
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<T> |
DynamoDBQueryExpression.withQueryFilter(Map<String,Condition> queryFilter)
Sets the query filter applied on this query.
|
DynamoDBQueryExpression<T> |
DynamoDBQueryExpression.withRangeKeyConditions(Map<String,Condition> rangeKeyConditions)
Sets the range key condition for this query.
|
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.
|
Modifier and Type | Method and Description |
---|---|
static Map<String,Condition> |
ItemUtils.toAttributeConditionMap(Collection<? extends Filter<?>> filters)
Returns the low level representation of a collection of
Filter . |
Modifier and Type | Method and Description |
---|---|
static Map<String,Condition> |
InternalUtils.toAttributeConditionMap(Collection<? extends Filter<?>> filters)
Deprecated.
Returns the low level representation of a collection of
Filter . |
Modifier and Type | Method and Description |
---|---|
Condition |
Condition.clone() |
Condition |
Condition.withAttributeValueList(AttributeValue... attributeValueList)
One or more values to evaluate against the supplied attribute.
|
Condition |
Condition.withAttributeValueList(Collection<AttributeValue> attributeValueList)
One or more values to evaluate against the supplied attribute.
|
Condition |
Condition.withComparisonOperator(ComparisonOperator comparisonOperator)
A comparator for evaluating attributes.
|
Condition |
Condition.withComparisonOperator(String comparisonOperator)
A comparator for evaluating attributes.
|
Modifier and Type | Method and Description |
---|---|
Map<String,Condition> |
QueryRequest.getKeyConditions()
This is a legacy parameter.
|
Map<String,Condition> |
QueryRequest.getQueryFilter()
This is a legacy parameter.
|
Map<String,Condition> |
ScanRequest.getScanFilter()
This is a legacy parameter.
|
Modifier and Type | Method and Description |
---|---|
QueryRequest |
QueryRequest.addKeyConditionsEntry(String key,
Condition value)
Add a single KeyConditions entry
|
QueryRequest |
QueryRequest.addQueryFilterEntry(String key,
Condition value)
Add a single QueryFilter entry
|
ScanRequest |
ScanRequest.addScanFilterEntry(String key,
Condition value)
Add a single ScanFilter entry
|
Modifier and Type | Method and Description |
---|---|
void |
QueryRequest.setKeyConditions(Map<String,Condition> keyConditions)
This is a legacy parameter.
|
void |
QueryRequest.setQueryFilter(Map<String,Condition> queryFilter)
This is a legacy parameter.
|
void |
ScanRequest.setScanFilter(Map<String,Condition> scanFilter)
This is a legacy parameter.
|
QueryRequest |
QueryRequest.withKeyConditions(Map<String,Condition> keyConditions)
This is a legacy parameter.
|
QueryRequest |
QueryRequest.withQueryFilter(Map<String,Condition> queryFilter)
This is a legacy parameter.
|
ScanRequest |
ScanRequest.withScanFilter(Map<String,Condition> scanFilter)
This is a legacy parameter.
|
Copyright © 2021. All rights reserved.