Package | Description |
---|---|
software.amazon.awssdk.enhanced.dynamodb.internal.conditional | |
software.amazon.awssdk.enhanced.dynamodb.model |
Modifier and Type | Class and Description |
---|---|
class |
BeginsWithConditional |
class |
BetweenConditional |
class |
EqualToConditional |
class |
SingleKeyItemConditional
A
QueryConditional implementation that matches values from a specific key using a supplied operator for the
sort key value comparison. |
Modifier and Type | Method and Description |
---|---|
static QueryConditional |
QueryConditional.beginsWith(Consumer<Key.Builder> keyConsumer)
Creates a
QueryConditional that matches when the key of an index begins with a specific value. |
static QueryConditional |
QueryConditional.beginsWith(Key key)
Creates a
QueryConditional that matches when the key of an index begins with a specific value. |
static QueryConditional |
QueryConditional.between(Consumer<Key.Builder> keyFromConsumer,
Consumer<Key.Builder> keyToConsumer)
Creates a
QueryConditional that matches when the key of an index is between two specific values. |
static QueryConditional |
QueryConditional.between(Key keyFrom,
Key keyTo)
Creates a
QueryConditional that matches when the key of an index is between two specific values. |
static QueryConditional |
QueryConditional.equalTo(Consumer<Key.Builder> keyConsumer)
Creates a
QueryConditional that matches when the key of an index is equal to a specific value. |
static QueryConditional |
QueryConditional.equalTo(Key key)
Creates a
QueryConditional that matches when the key of an index is equal to a specific value. |
static QueryConditional |
QueryConditional.greaterThan(Consumer<Key.Builder> keyConsumer)
Creates a
QueryConditional that matches when the key of an index is greater than a specific value. |
static QueryConditional |
QueryConditional.greaterThan(Key key)
Creates a
QueryConditional that matches when the key of an index is greater than a specific value. |
static QueryConditional |
QueryConditional.greaterThanOrEqualTo(Consumer<Key.Builder> keyConsumer)
Creates a
QueryConditional that matches when the key of an index is greater than or equal to a specific
value. |
static QueryConditional |
QueryConditional.greaterThanOrEqualTo(Key key)
Creates a
QueryConditional that matches when the key of an index is greater than or equal to a specific
value. |
static QueryConditional |
QueryConditional.lessThan(Consumer<Key.Builder> keyConsumer)
Creates a
QueryConditional that matches when the key of an index is less than a specific value. |
static QueryConditional |
QueryConditional.lessThan(Key key)
Creates a
QueryConditional that matches when the key of an index is less than a specific value. |
static QueryConditional |
QueryConditional.lessThanOrEqualTo(Consumer<Key.Builder> keyConsumer)
Creates a
QueryConditional that matches when the key of an index is less than or equal to a specific
value. |
static QueryConditional |
QueryConditional.lessThanOrEqualTo(Key key)
Creates a
QueryConditional that matches when the key of an index is less than or equal to a specific
value. |
QueryConditional |
QueryEnhancedRequest.queryConditional()
Returns the matching condition of the query.
|
Modifier and Type | Method and Description |
---|---|
QueryEnhancedRequest.Builder |
QueryEnhancedRequest.Builder.queryConditional(QueryConditional queryConditional)
Determines the matching conditions for this query request.
|
Copyright © 2020. All rights reserved.