Package | Description |
---|---|
com.amazonaws.services.dynamodb.model |
Classes modeling the various types represented by AmazonDynamoDB.
|
Modifier and Type | Method and Description |
---|---|
static ComparisonOperator |
ComparisonOperator.fromValue(String value)
Deprecated.
Use this in place of valueOf.
|
static ComparisonOperator |
ComparisonOperator.valueOf(String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static ComparisonOperator[] |
ComparisonOperator.values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
void |
Condition.setComparisonOperator(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(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. |
Copyright © 2014. All rights reserved.