Package | Description |
---|---|
com.marklogic.client.semantics |
Modifier and Type | Method and Description |
---|---|
SPARQLQueryDefinition |
SPARQLQueryDefinition.clearBindings()
Remove all variable bindings from the child SPARQLBindings instance.
|
SPARQLQueryDefinition |
SPARQLQueryManager.newQueryDefinition()
Instantiate a new SPARQLQueryDefinition.
|
SPARQLQueryDefinition |
SPARQLQueryManager.newQueryDefinition(String sparql)
Instantiate a new SPARQLQueryDefinition with provided SPARQL.
|
SPARQLQueryDefinition |
SPARQLQueryManager.newQueryDefinition(TextWriteHandle sparql)
Instantiate a new SPARQLQueryDefinition with the SPARQL from
the provided TextWriteHandle.
|
SPARQLQueryDefinition |
SPARQLQueryDefinition.withBinding(String name,
String value)
Bind a variable of type iri.
|
SPARQLQueryDefinition |
SPARQLQueryDefinition.withBinding(String name,
String value,
Locale languageTag)
Bind a variable of type
http://www.w3.org/1999/02/22-rdf-syntax-ns#langString with the specified
language tag.
|
SPARQLQueryDefinition |
SPARQLQueryDefinition.withBinding(String name,
String value,
RDFTypes type)
Bind a variable of specified type.
|
SPARQLQueryDefinition |
SPARQLQueryDefinition.withConstrainingQuery(QueryDefinition query)
Set the search query used to constrain the set of documents included in
the SPARQL query.
|
SPARQLQueryDefinition |
SPARQLQueryDefinition.withIncludeDefaultRulesets(Boolean include)
Set whether to include database-default inference or not.
|
SPARQLQueryDefinition |
SPARQLQueryDefinition.withRuleset(SPARQLRuleset ruleset)
Set the name of rulesets to include for inferring triples.
|
SPARQLQueryDefinition |
SPARQLQueryDefinition.withSparql(String sparql)
Set the SPARQL query or update statement
|
SPARQLQueryDefinition |
SPARQLQueryDefinition.withSparql(TextWriteHandle sparql)
Set the SPARQL query or update statement
|
SPARQLQueryDefinition |
SPARQLQueryDefinition.withUpdatePermission(String role,
Capability capability)
Calls
setUpdatePermissions(com.marklogic.client.semantics.GraphPermissions) then returns this instance for
method chaining. |
Modifier and Type | Method and Description |
---|---|
Boolean |
SPARQLQueryManager.executeAsk(SPARQLQueryDefinition qdef)
Execute a SPARQL "ASK" statement.
|
Boolean |
SPARQLQueryManager.executeAsk(SPARQLQueryDefinition qdef,
Transaction tx)
Execute a SPARQL "ASK" statement.
|
<T extends TriplesReadHandle> |
SPARQLQueryManager.executeConstruct(SPARQLQueryDefinition qdef,
T handle)
Execute a SPARQL "CONSTRUCT" statement.
|
<T extends TriplesReadHandle> |
SPARQLQueryManager.executeConstruct(SPARQLQueryDefinition qdef,
T handle,
Transaction tx)
Execute a SPARQL "CONSTRUCT" statement.
|
<T extends TriplesReadHandle> |
SPARQLQueryManager.executeDescribe(SPARQLQueryDefinition qdef,
T handle)
Execute a SPARQL "DESCRIBE" query (which implements the Concise Bounded Description specification).
|
<T extends TriplesReadHandle> |
SPARQLQueryManager.executeDescribe(SPARQLQueryDefinition qdef,
T handle,
Transaction tx)
Execute a SPARQL "DESCRIBE" query (which implements the Concise Bounded Description specification).
|
<T extends SPARQLResultsReadHandle> |
SPARQLQueryManager.executeSelect(SPARQLQueryDefinition qdef,
T handle)
Execute a SPARQL "SELECT" query.
|
<T extends SPARQLResultsReadHandle> |
SPARQLQueryManager.executeSelect(SPARQLQueryDefinition qdef,
T handle,
long start)
Execute a SPARQL "SELECT" query.
|
<T extends SPARQLResultsReadHandle> |
SPARQLQueryManager.executeSelect(SPARQLQueryDefinition qdef,
T handle,
long start,
Transaction tx)
Execute a SPARQL "SELECT" query.
|
<T extends SPARQLResultsReadHandle> |
SPARQLQueryManager.executeSelect(SPARQLQueryDefinition qdef,
T handle,
Transaction tx)
Execute a SPARQL "SELECT" query.
|
void |
SPARQLQueryManager.executeUpdate(SPARQLQueryDefinition qdef)
Execute a SPARQL update statement.
|
void |
SPARQLQueryManager.executeUpdate(SPARQLQueryDefinition qdef,
Transaction tx)
Execute a SPARQL update statement.
|
Copyright © 2013-2016 MarkLogic Corporation.