diff --git a/jopa-api/src/main/java/cz/cvut/kbss/jopa/model/query/criteria/CriteriaBuilder.java b/jopa-api/src/main/java/cz/cvut/kbss/jopa/model/query/criteria/CriteriaBuilder.java index 10e832b84..a657ad127 100644 --- a/jopa-api/src/main/java/cz/cvut/kbss/jopa/model/query/criteria/CriteriaBuilder.java +++ b/jopa-api/src/main/java/cz/cvut/kbss/jopa/model/query/criteria/CriteriaBuilder.java @@ -58,19 +58,21 @@ public interface CriteriaBuilder extends PredicateFactory { /** * Create an aggregate expression applying the count operation. + *
+ * Return type of count function in SPARQL is xsd:integer which JOPA internally represents as Integer.
*
* @param x expression representing input value to count operation
* @return count expression
- * @implNote Return type of count function in SPARQL is xsd:integer which JOPA internally represents as Integer.
*/
Expression
+ * Return type of count function in SPARQL is xsd:integer which JOPA internally represents as Integer.
*
* @param x expression representing input value to count operation
* @return count distinct expression
- * @implNote Return type of count function in SPARQL is xsd:integer which JOPA internally represents as Integer.
*/
Expression