Class BetweenConditional
- java.lang.Object
-
- software.amazon.awssdk.enhanced.dynamodb.internal.conditional.BetweenConditional
-
- All Implemented Interfaces:
QueryConditional
public class BetweenConditional extends Object implements QueryConditional
-
-
Constructor Summary
Constructors Constructor Description BetweenConditional(Key key1, Key key2)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
Expression
expression(TableSchema<?> tableSchema, String indexName)
Generates a conditionalExpression
based on specific context that is supplied as arguments.int
hashCode()
-
-
-
Method Detail
-
expression
public Expression expression(TableSchema<?> tableSchema, String indexName)
Description copied from interface:QueryConditional
Generates a conditionalExpression
based on specific context that is supplied as arguments.- Specified by:
expression
in interfaceQueryConditional
- Parameters:
tableSchema
- ATableSchema
that this expression will be used withindexName
- The specific index name of the index this expression will be used with- Returns:
- A specific
Expression
that can be used as part of a query request
-
-