Class Query<T extends Query<T>>

java.lang.Object
org.eclipse.rdf4j.sparqlbuilder.core.query.Query<T>
Type Parameters:
T - They type of query. Used to support fluency.
All Implemented Interfaces:
QueryElement
Direct Known Subclasses:
OuterQuery, SubSelect

public abstract class Query<T extends Query<T>> extends Object implements QueryElement
The base class for all SPARQL Queries. Contains elements and methods common to all queries.
  • Field Details

  • Constructor Details

    • Query

      public Query()
  • Method Details

    • from

      public T from(From... graphs)
      Add datasets to this query
      Parameters:
      graphs - the graph specifiers to add
      Returns:
      this
    • from

      public T from(Dataset from)
      Set the Dataset clause for this query
      Parameters:
      from - the Dataset clause to set
      Returns:
      this
    • where

      public T where(GraphPattern... queryPatterns)
      Add graph patterns to this query's query pattern
      Parameters:
      queryPatterns - the patterns to add
      Returns:
      this
      See Also:
    • where

      public T where(QueryPattern where)
      Set the query pattern of this query
      Parameters:
      where - the query pattern to set
      Returns:
      this
    • groupBy

      public T groupBy(Groupable... groupables)
      Add grouping specifiers for the query results.
      Parameters:
      groupables - the objects to group on, in order (appended to the end of any existing grouping specifiers)
      Returns:
      this
      See Also:
    • groupBy

      public T groupBy(GroupBy groupBy)
      Set this query's Group By clause
      Parameters:
      groupBy - the GroupBy clause to set
      Returns:
      this
    • orderBy

      public T orderBy(Orderable... conditions)
      Specify orderings for the query results
      Parameters:
      conditions - the objects to order on, in order
      Returns:
      this
      See Also:
    • orderBy

      public T orderBy(OrderBy orderBy)
      Set this query's Order By clause
      Parameters:
      orderBy - the OrderBy clause to set
      Returns:
      this
    • having

      public T having(Expression<?>... constraints)
      Specify constraints for this query's Having clause.
      Parameters:
      constraints - the constraints to add to the clause
      Returns:
      this
      See Also:
    • having

      public T having(Having having)
      Set this query's Having clause
      Parameters:
      having - the Having clause to set
      Returns:
      this
    • limit

      public T limit(int limit)
      Set a limit on the number of results returned by this query.
      Parameters:
      limit -
      Returns:
      this
      See Also:
    • offset

      public T offset(int offset)
      Specify an offset in query results.
      Parameters:
      offset -
      Returns:
      this
      See Also:
    • var

      public Variable var()
      A shortcut. Each call to this method returns a new Variable that is unique (i.e., has a unique alias) to this query instance.
      Returns:
      a Variable object that is unique to this query instance
    • bNode

      A shortcut. Each call to this method returns a new RdfBlankNode.LabeledBlankNode that is unique (i.e., has a unique alias) to this query instance.
      Returns:
      a RdfBlankNode.LabeledBlankNode object that is unique to this query instance
    • getQueryActionString

      protected abstract String getQueryActionString()
    • getQueryString

      public String getQueryString()
      Specified by:
      getQueryString in interface QueryElement
      Returns:
      the String representing the SPARQL syntax of this element