From 929eaf6fef99df236305c102098b67e91a9fda1d Mon Sep 17 00:00:00 2001 From: Otavio Santana Date: Sun, 30 Oct 2022 17:06:36 +0000 Subject: [PATCH] improve javadoc at condition query Signed-off-by: Otavio Santana --- .../src/main/java/jakarta/nosql/query/Condition.java | 10 ++++++++++ 1 file changed, 10 insertions(+) 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();