Package org.eclipse.rdf4j.query.parser
Class ParsedDescribeQuery
java.lang.Object
org.eclipse.rdf4j.query.parser.ParsedOperation
org.eclipse.rdf4j.query.parser.ParsedQuery
org.eclipse.rdf4j.query.parser.ParsedGraphQuery
org.eclipse.rdf4j.query.parser.ParsedDescribeQuery
A ParsedGraphQuery to identify DESCRIBE queries.
-
Constructor Summary
ConstructorsConstructorDescriptionCreates a new graph query.ParsedDescribeQuery(String sourceString, TupleExpr tupleExpr)
Creates a new graph query for the supplied tuple expression.Creates a new graph query.ParsedDescribeQuery(Map<String,String> namespaces)
Creates a new graph query.ParsedDescribeQuery(TupleExpr tupleExpr)
Creates a new graph query for the supplied tuple expression.ParsedDescribeQuery(TupleExpr tupleExpr, Map<String,String> namespaces)
Creates a new graph query. -
Method Summary
Methods inherited from class org.eclipse.rdf4j.query.parser.ParsedGraphQuery
getQueryNamespaces
Methods inherited from class org.eclipse.rdf4j.query.parser.ParsedQuery
getDataset, getTupleExpr, setDataset, setTupleExpr, toString
Methods inherited from class org.eclipse.rdf4j.query.parser.ParsedOperation
getSourceString
-
Constructor Details
-
ParsedDescribeQuery
public ParsedDescribeQuery()Creates a new graph query. To complete this query, a tuple expression needs to be supplied to it usingParsedQuery.setTupleExpr(TupleExpr)
. -
ParsedDescribeQuery
Creates a new graph query. To complete this query, a tuple expression needs to be supplied to it usingParsedQuery.setTupleExpr(TupleExpr)
.- Parameters:
namespaces
- A mapping of namespace prefixes to namespace names representing the namespaces that are used in the query.
-
ParsedDescribeQuery
Creates a new graph query for the supplied tuple expression.- Parameters:
tupleExpr
- A tuple expression representing the query, formulated in Sail Query Model objects.
-
ParsedDescribeQuery
Creates a new graph query for the supplied tuple expression.- Parameters:
tupleExpr
- A tuple expression representing the query, formulated in Sail Query Model objects.
-
ParsedDescribeQuery
Creates a new graph query.- Parameters:
tupleExpr
- A tuple expression representing the query, formulated in Sail Query Model objects.namespaces
- A mapping of namespace prefixes to namespace names representing the namespaces that are used in the query.
-
ParsedDescribeQuery
public ParsedDescribeQuery(String sourceString, TupleExpr tupleExpr, Map<String,String> namespaces)Creates a new graph query.- Parameters:
tupleExpr
- A tuple expression representing the query, formulated in Sail Query Model objects.namespaces
- A mapping of namespace prefixes to namespace names representing the namespaces that are used in the query.
-