SelectQuery |
SelectQuery.all() |
Specify that this query's projection should select all in-scope expressions
|
SelectQuery |
SelectQuery.all(boolean selectAll) |
Specify if this query's projection should select all in-scope expressions or not.
|
SelectQuery |
SelectQuery.distinct() |
Specify the query's projection to be distinct
|
SelectQuery |
SelectQuery.distinct(boolean isDistinct) |
Specify if the query's projection should be distinct or not
|
SelectQuery |
SelectQuery.select(Projectable... projectables) |
Add expressions to the query's projection
|
SelectQuery |
SelectQuery.select(Projection select) |
Set this query's projection
|
static SelectQuery |
Queries.SELECT(Projectable... projectables) |
Create a SPARQL Select query
|
static SelectQuery |
Queries.SELECT(Projection select) |
Create a SPARQL Select query
|