Class Queries
java.lang.Object
org.eclipse.rdf4j.sparqlbuilder.core.query.Queries
A class with static methods to create SPARQL queries
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionstatic AddQuery
ADD()
Creates a new SPARQL ADD Querystatic ClearQuery
CLEAR()
Creates a SPARQL CLEAR Querystatic ConstructQuery
CONSTRUCT
(GraphTemplate construct) Create a SPARQL Construct querystatic ConstructQuery
CONSTRUCT
(TriplePattern... patterns) Create a SPARQL Construct querystatic CopyQuery
COPY()
Creates a SPARQL COPY Querystatic CreateQuery
CREATE()
Creates a SPARQL CREATE Querystatic ModifyQuery
DELETE
(TriplePattern... triples) Convenience method, creates a SPARQL DELETE query using ModifyQuery.static DeleteDataQuery
DELETE_DATA
(TriplesTemplate triplesTemplate) Create a SPARQL DELETE DATA querystatic DeleteDataQuery
DELETE_DATA
(TriplePattern... triples) Create a SPARQL DELETE DATA querystatic DropQuery
DROP()
Creates a SPARQL DROP Querystatic ModifyQuery
INSERT
(TriplePattern... triples) Convenience method, creates a SPARQL INSERT query using ModifyQuery.static InsertDataQuery
INSERT_DATA
(TriplesTemplate triplesTemplate) Create a SPARQL INSERT DATA querystatic InsertDataQuery
INSERT_DATA
(TriplePattern... triples) Create a SPARQL INSERT DATA querystatic LoadQuery
LOAD()
Creates a SPARQL LOAD querystatic ModifyQuery
MODIFY()
Creates a SPARQL Modify querystatic MoveQuery
MOVE()
Creates a SPARQL MOVE Querystatic SelectQuery
SELECT
(Projectable... projectables) Create a SPARQL Select querystatic SelectQuery
SELECT
(Projection select) Create a SPARQL Select query
-
Method Details
-
SELECT
Create a SPARQL Select query- Parameters:
projectables
- the initial set ofProjectable
(s), if any, to select- Returns:
- a new
SelectQuery
- See Also:
-
SELECT
Create a SPARQL Select query- Parameters:
select
- theProjection
to set initially- Returns:
- a new
SelectQuery
- See Also:
-
CONSTRUCT
Create a SPARQL Construct query- Parameters:
patterns
- the initial set ofTriplePattern
(s), if any, to construct- Returns:
- a new
ConstructQuery
- See Also:
-
CONSTRUCT
Create a SPARQL Construct query- Parameters:
construct
- theGraphTemplate
to set initially- Returns:
- a new
ConstructQuery
- See Also:
-
INSERT_DATA
Create a SPARQL INSERT DATA query- Parameters:
triples
- the initial set ofTriplePattern
(s), if any, to use- Returns:
- a new
InsertDataQuery
- See Also:
-
INSERT_DATA
Create a SPARQL INSERT DATA query- Parameters:
triplesTemplate
- theTriplesTemplate
to set initially- Returns:
- a new
InsertDataQuery
- See Also:
-
DELETE_DATA
Create a SPARQL DELETE DATA query- Parameters:
triples
- the initial set ofTriplePattern
(s), if any, to use- Returns:
- a new
DeleteDataQuery
- See Also:
-
DELETE_DATA
Create a SPARQL DELETE DATA query- Parameters:
triplesTemplate
- theTriplesTemplate
to set initially- Returns:
- a new
DeleteDataQuery
- See Also:
-
MODIFY
Creates a SPARQL Modify query- Returns:
- a new
ModifyQuery
- See Also:
-
DELETE
Convenience method, creates a SPARQL DELETE query using ModifyQuery.- Parameters:
triples
- the initial set ofTriplePattern
(s), if any, to use- Returns:
- a new
ModifyQuery
- See Also:
-
INSERT
Convenience method, creates a SPARQL INSERT query using ModifyQuery.- Parameters:
triples
- the initial set ofTriplePattern
(s), if any, to use- Returns:
- a new
ModifyQuery
- See Also:
-
LOAD
Creates a SPARQL LOAD query- Returns:
- a new
LoadQuery
- See Also:
-
CLEAR
Creates a SPARQL CLEAR Query- Returns:
- a new
ClearQuery
- See Also:
-
CREATE
Creates a SPARQL CREATE Query- Returns:
- a new
CreateQuery
- See Also:
-
DROP
Creates a SPARQL DROP Query- Returns:
- a new
DropQuery
- See Also:
-
COPY
Creates a SPARQL COPY Query- Returns:
- a new
CopyQuery
- See Also:
-
MOVE
Creates a SPARQL MOVE Query- Returns:
- a new
MoveQuery
- See Also:
-
ADD
Creates a new SPARQL ADD Query- Returns:
- a new
AddQuery
- See Also:
-