Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -58,19 +58,21 @@ public interface CriteriaBuilder extends PredicateFactory {

/**
* Create an aggregate expression applying the count operation.
* <p>
* 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<Integer> count(Expression<?> x);

/**
* Create an aggregate expression applying the count distinct operation.
* <p>
* 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<Integer> countDistinct(Expression<?> x);

Expand Down
18 changes: 0 additions & 18 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -128,15 +128,6 @@
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${maven.javadoc.plugin.version}</version>
<configuration>
<tags>
<tag>
<name>implNote</name>
<placement>a</placement>
<head>Implementation Note:</head>
</tag>
</tags>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
Expand Down Expand Up @@ -184,15 +175,6 @@
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${maven.javadoc.plugin.version}</version>
<configuration>
<tags>
<tag>
<name>implNote</name>
<placement>a</placement>
<head>Implementation Note:</head>
</tag>
</tags>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
Expand Down
Loading