Lines Matching refs:a

9  * with the License.  You may obtain a copy of the License at
101 /** provides access to a set of named RDF graphs.
105 <a href="http://www.w3.org/RDF/">Resource Description Framework</a>.
106 This interface may be used e.g. for repositories that correspond to a
111 The RDF triples are stored as a set of named RDF graphs.
113 <a href="http://www.w3.org/TR/rdf-syntax-grammar/">RDF/XML</a>
117 <a href="http://www.w3.org/TR/rdf-sparql-query/">SPARQL</a>
131 /** creates a fresh unique blank node.
134 a newly generated blank node which is unique in this repository
140 /** imports a named graph into the repository.
148 If the format requires use of a BaseURI, but none is given, an
163 a base URI to resolve relative URI references
170 or BaseURI is <NULL/> and the format requires use of a base URI
176 if a graph with the given GraphName already exists in the
201 /** exports a named graph from the repository.
221 a base URI to resolve relative URI references
225 or BaseURI is <NULL/> and the format requires use of a base URI
231 if a graph with the given GraphName does not exist
254 a list containing the names of the graphs in the repository
263 /** gets a graph by its name.
282 /** creates a graph with the given name.
298 if a graph with the given GraphName already exists
324 if a graph with the given GraphName does not exist
338 Any parameter may be <NULL/>, which acts as a wildcard.
371 /** executes a SPARQL "SELECT" query.
374 This method runs a SPARQL query that returns a list of variable
375 bindings, i.e., a query beginning with "SELECT".
376 The result is basically a (rectangular) table with labeled columns,
386 <li>a list of query variable names (column labels)</li>
388 each being a list of bindings for the above variables</li>
404 /** executes a SPARQL "CONSTRUCT" query.
407 This method runs a SPARQL query that constructs a result graph,
408 i.e., a query beginning with "CONSTRUCT".
432 /** executes a SPARQL "ASK" query.
435 This method runs a SPARQL query that computes a boolean,
436 i.e., a query beginning with "ASK".