Class RangeKeyCondition
java.lang.Object
com.amazonaws.services.dynamodbv2.document.RangeKeyCondition
A condition for selecting items with a range key. Typical usages:
new RangeKeyCondition("strAttr").eq("attrValue");
new RangeKeyCondition("intAttr").gt(42);
...
-
Constructor Summary
ConstructorsConstructorDescriptionRangeKeyCondition
(String attrName) A condition for selecting items with a range key. -
Method Summary
Modifier and TypeMethodDescriptionbeginsWith
(String val) Creates and returns a condition of the range key with a value that begins with the given value.Creates and returns a condition of the range key that has a value between the given values.Creates and returns a condition of the range key being equal to the given value.Creates and returns a condition of the range key being greater than or equal to the given value.Object[]
Creates and returns a condition of the range key being greater than the given value.Creates and returns a condition of the range key being less than or equal to the given value.Creates and returns a condition of the range key being less than the given value.
-
Constructor Details
-
RangeKeyCondition
A condition for selecting items with a range key. Typical usages:new RangeKeyCondition("strAttr").eq("attrValue");
new RangeKeyCondition("intAttr").gt(42);
...
-
-
Method Details
-
getAttrName
-
getKeyCondition
-
getValues
-
eq
Creates and returns a condition of the range key being equal to the given value. -
beginsWith
Creates and returns a condition of the range key with a value that begins with the given value. -
between
Creates and returns a condition of the range key that has a value between the given values. -
ge
Creates and returns a condition of the range key being greater than or equal to the given value. -
gt
Creates and returns a condition of the range key being greater than the given value. -
le
Creates and returns a condition of the range key being less than or equal to the given value. -
lt
Creates and returns a condition of the range key being less than the given value.
-