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.keyEqualTo(Consumer<Key.Builder> keyConsumer)
Creates a
QueryConditional that matches when the key of an index is equal to a specific value. |
static QueryConditional |
QueryConditional.keyEqualTo(Key key)
Creates a
QueryConditional that matches when the key of an index is equal to a specific value. |
QueryConditional |
QueryEnhancedRequest.queryConditional()
Returns the matching condition of the query.
|
static QueryConditional |
QueryConditional.sortBeginsWith(Consumer<Key.Builder> keyConsumer)
Creates a
QueryConditional that matches when the key of an index begins with a specific value. |
static QueryConditional |
QueryConditional.sortBeginsWith(Key key)
Creates a
QueryConditional that matches when the key of an index begins with a specific value. |
static QueryConditional |
QueryConditional.sortBetween(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.sortBetween(Key keyFrom,
Key keyTo)
Creates a
QueryConditional that matches when the key of an index is between two specific values. |
static QueryConditional |
QueryConditional.sortGreaterThan(Consumer<Key.Builder> keyConsumer)
Creates a
QueryConditional that matches when the key of an index is greater than a specific value. |
static QueryConditional |
QueryConditional.sortGreaterThan(Key key)
Creates a
QueryConditional that matches when the key of an index is greater than a specific value. |
static QueryConditional |
QueryConditional.sortGreaterThanOrEqualTo(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.sortGreaterThanOrEqualTo(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.sortLessThan(Consumer<Key.Builder> keyConsumer)
Creates a
QueryConditional that matches when the key of an index is less than a specific value. |
static QueryConditional |
QueryConditional.sortLessThan(Key key)
Creates a
QueryConditional that matches when the key of an index is less than a specific value. |
static QueryConditional |
QueryConditional.sortLessThanOrEqualTo(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.sortLessThanOrEqualTo(Key key)
Creates a
QueryConditional that matches when the key of an index is less than or equal to a specific
value. |
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.