-
public interface Condition
Condition performs different computations or actions depending on whether a boolean query condition evaluates to true or false. The conditions are composed of three elements.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getName()
the data source or target, to apply the operatorOperator
getOperator()
that defines comparing process between the name and the value.QueryValue<?>
getValue()
that data that receives the operation.
-
-
-
Method Detail
-
getName
String getName()
the data source or target, to apply the operator- Returns:
- the name
-
getOperator
Operator getOperator()
that defines comparing process between the name and the value.- Returns:
- the operator
-
getValue
QueryValue<?> getValue()
that data that receives the operation.- Returns:
- the value
-
-