diff --git a/api/communication/communication-query/src/main/java/jakarta/nosql/query/Condition.java b/api/communication/communication-query/src/main/java/jakarta/nosql/query/Condition.java index 7e32f9bc9..6c3cf2c92 100644 --- a/api/communication/communication-query/src/main/java/jakarta/nosql/query/Condition.java +++ b/api/communication/communication-query/src/main/java/jakarta/nosql/query/Condition.java @@ -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();