Skip to content

Commit

Permalink
improve javadoc at condition query
Browse files Browse the repository at this point in the history
Signed-off-by: Otavio Santana <otaviopolianasantana@gmail.com>
  • Loading branch information
otaviojava committed Oct 30, 2022
1 parent 63c1183 commit 929eaf6
Showing 1 changed file with 10 additions and 0 deletions.
Expand Up @@ -20,23 +20,33 @@
* 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.
* The condition's name
* The Operator
* The Value
*
* @see Condition#getName()
* @see Condition#getOperator()
* @see Condition#getValue()
*/
public interface Condition {

/**
* the data source or target, to apply the operator
*
* @return the name
*/
String getName();

/**
* that defines comparing process between the name and the value.
*
* @return the operator
*/
Operator getOperator();

/**
* that data that receives the operation.
*
* @return the value
*/
QueryValue<?> getValue();
Expand Down

0 comments on commit 929eaf6

Please sign in to comment.