Class Queries
java.lang.Object
org.eclipse.rdf4j.sparqlbuilder.core.query.Queries
-
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
-
CLEAR
-
CREATE
Creates a SPARQL CREATE Query- Returns:
- a new
CreateQuery
- See Also:
-
DROP
-
COPY
-
MOVE
-
ADD
-