Class IndexValueConditionImpl
- java.lang.Object
-
- io.tarantool.driver.core.conditions.BaseCondition
-
- io.tarantool.driver.core.conditions.IndexValueConditionImpl
-
- All Implemented Interfaces:
Condition
,IndexValueCondition
,Serializable
public class IndexValueConditionImpl extends BaseCondition implements IndexValueCondition
Tuple filtering condition which accepts index key parts values- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description IndexValueConditionImpl(Operator operator, FieldIdentifier<?,?> field, List<?> indexValues)
Basic constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
int
hashCode()
List<?>
value()
Filtering value for the operand-
Methods inherited from class io.tarantool.driver.core.conditions.BaseCondition
field, operator, toList
-
-
-
-
Constructor Detail
-
IndexValueConditionImpl
public IndexValueConditionImpl(Operator operator, FieldIdentifier<?,?> field, List<?> indexValues)
Basic constructor- Parameters:
operator
- the filtering operatorfield
- the filtering indexindexValues
- the index parts values
-
-