Package jakarta.nosql.query
Interface ConditionQueryValue
-
public interface ConditionQueryValue extends QueryValue<List<Condition>>
The QueryValue type that has a list of values, it will be used when the condition is composed such as and (Operator.AND
), or (Operator.OR
) and negation (Operator.NOT
).
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default ValueType
getType()
Returns a value type
-
-
-
Method Detail
-
getType
default ValueType getType()
Description copied from interface:QueryValue
Returns a value type- Specified by:
getType
in interfaceQueryValue<List<Condition>>
- Returns:
- a value type
-
-