Package | Description |
---|---|
com.amazonaws.services.dynamodb.datamodeling | |
com.amazonaws.services.dynamodb.model |
Classes modeling the various types represented by AmazonDynamoDB.
|
Modifier and Type | Method and Description |
---|---|
Condition |
DynamoDBQueryExpression.getRangeKeyCondition()
Deprecated.
Returns the range key condition for this query.
|
Modifier and Type | Method and Description |
---|---|
Map<String,Condition> |
DynamoDBScanExpression.getScanFilter()
Deprecated.
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)
Deprecated.
Adds a new filter condition to the current scan filter.
|
void |
DynamoDBQueryExpression.setRangeKeyCondition(Condition rangeKeyCondition)
Deprecated.
Sets the range key condition for this query.
|
DynamoDBQueryExpression |
DynamoDBQueryExpression.withRangeKeyCondition(Condition rangeKeyCondition)
Deprecated.
Sets the range key condition for this query and returns a pointer to this
object for method-chaining.
|
Modifier and Type | Method and Description |
---|---|
void |
DynamoDBScanExpression.setScanFilter(Map<String,Condition> scanFilter)
Deprecated.
Sets the scan filter to the map of attribute names to conditions.
|
Modifier and Type | Method and Description |
---|---|
Condition |
QueryRequest.getRangeKeyCondition()
Deprecated.
A container for the attribute values and comparison operators to use
for the query.
|
Condition |
Condition.withAttributeValueList(AttributeValue... attributeValueList)
Deprecated.
A list of attribute values to be used with a comparison operator for a
scan or query operation.
|
Condition |
Condition.withAttributeValueList(Collection<AttributeValue> attributeValueList)
Deprecated.
A list of attribute values to be used with a comparison operator for a
scan or query operation.
|
Condition |
Condition.withComparisonOperator(ComparisonOperator comparisonOperator)
Deprecated.
A comparison operator is an enumeration of several operations:
EQ for equal. NE for
not equal. IN checks for exact
matches. LE for less than or equal
to. LT for less than.
GE for greater than or equal to.
GT for greater than.
BETWEEN for between.
NOT_NULL for exists.
NULL for not exists.
CONTAINS for substring or value in a set.
NOT_CONTAINS for absence of a substring or absence of
a value in a set. BEGINS_WITH for a substring
prefix. |
Condition |
Condition.withComparisonOperator(String comparisonOperator)
Deprecated.
A comparison operator is an enumeration of several operations:
EQ for equal. NE for
not equal. IN checks for exact
matches. LE for less than or equal
to. LT for less than.
GE for greater than or equal to.
GT for greater than.
BETWEEN for between.
NOT_NULL for exists.
NULL for not exists.
CONTAINS for substring or value in a set.
NOT_CONTAINS for absence of a substring or absence of
a value in a set. BEGINS_WITH for a substring
prefix. |
Modifier and Type | Method and Description |
---|---|
Map<String,Condition> |
ScanRequest.getScanFilter()
Deprecated.
Evaluates the scan results and returns only the desired values.
|
Modifier and Type | Method and Description |
---|---|
void |
QueryRequest.setRangeKeyCondition(Condition rangeKeyCondition)
Deprecated.
A container for the attribute values and comparison operators to use
for the query.
|
QueryRequest |
QueryRequest.withRangeKeyCondition(Condition rangeKeyCondition)
Deprecated.
A container for the attribute values and comparison operators to use
for the query.
|
Modifier and Type | Method and Description |
---|---|
void |
ScanRequest.setScanFilter(Map<String,Condition> scanFilter)
Deprecated.
Evaluates the scan results and returns only the desired values.
|
ScanRequest |
ScanRequest.withScanFilter(Map<String,Condition> scanFilter)
Deprecated.
Evaluates the scan results and returns only the desired values.
|
Copyright © 2014. All rights reserved.