|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use Graph | |
|---|---|
| org.openrdf.model.impl | Default implementations of the RDF model interfaces. |
| org.openrdf.model.util | |
| org.openrdf.query.dawg | Functionality to convert tuple query results to and from the Data Access Working Group Test Result Set RDF Vocabulary |
| org.openrdf.repository.config | |
| org.openrdf.repository.http.config | |
| org.openrdf.repository.sail.config | |
| org.openrdf.sail.config | |
| org.openrdf.sail.memory.config | |
| org.openrdf.sail.nativerdf.config | |
| Uses of Graph in org.openrdf.model.impl |
|---|
| Classes in org.openrdf.model.impl that implement Graph | |
|---|---|
class |
GraphImpl
|
| Uses of Graph in org.openrdf.model.util |
|---|
| Methods in org.openrdf.model.util with parameters of type Graph | |
|---|---|
static Iterator<Value> |
GraphUtil.getObjectIterator(Graph graph,
Resource subj,
URI pred,
Resource... contexts)
Gets the objects of the statements with the specified subject, predicate and (optionally) contexts from the supplied graph. |
static Set<Value> |
GraphUtil.getObjects(Graph graph,
Resource subj,
URI pred,
Resource... contexts)
Gets the objects of the statements with the specified subject, predicate and (optionally) contexts from the supplied graph. |
static Value |
GraphUtil.getOptionalObject(Graph graph,
Resource subj,
URI pred,
Resource... contexts)
Gets the object of the statement(s) with the specified subject and predicate from the specified contexts in the supplied graph. |
static Literal |
GraphUtil.getOptionalObjectLiteral(Graph graph,
Resource subj,
URI pred)
Utility method that casts the return value of GraphUtil.getOptionalObject(Graph, Resource, URI, Resource[]) to a Literal,
or throws a GraphUtilException if that value is not a Literal. |
static Resource |
GraphUtil.getOptionalObjectResource(Graph graph,
Resource subj,
URI pred)
Utility method that casts the return value of GraphUtil.getOptionalObject(Graph, Resource, URI, Resource[]) to a
Resource, or throws a GraphUtilException if that value is not a Resource. |
static URI |
GraphUtil.getOptionalObjectURI(Graph graph,
Resource subj,
URI pred)
Utility method that casts the return value of GraphUtil.getOptionalObject(Graph, Resource, URI, Resource[]) to a URI, or
throws a GraphUtilException if that value is not a URI. |
static Resource |
GraphUtil.getOptionalSubject(Graph graph,
URI pred,
Value obj,
Resource... contexts)
Gets the subject of the statement(s) with the specified predicate and object from the specified contexts in the supplied graph. |
static URI |
GraphUtil.getOptionalSubjectURI(Graph graph,
URI pred,
Value obj,
Resource... contexts)
Utility method that casts the return value of GraphUtil.getOptionalSubject(Graph, URI, Value, Resource[]) to a URI, or
throws a GraphUtilException if that value is not a URI. |
static Iterator<Resource> |
GraphUtil.getSubjectIterator(Graph graph,
URI pred,
Value obj,
Resource... contexts)
Gets the subject of the statements with the specified predicate, object and (optionally) contexts from the supplied graph. |
static Set<Resource> |
GraphUtil.getSubjects(Graph graph,
URI pred,
Value obj,
Resource... contexts)
Gets the subject of the statements with the specified predicate, object and (optionally) contexts from the supplied graph. |
static Value |
GraphUtil.getUniqueObject(Graph graph,
Resource subj,
URI pred,
Resource... contexts)
Gets the object of the statement(s) with the specified subject and predicate from the specified contexts in the supplied graph. |
static Literal |
GraphUtil.getUniqueObjectLiteral(Graph graph,
Resource subj,
URI pred)
Utility method that casts the return value of GraphUtil.getUniqueObject(Graph, Resource, URI, Resource[]) to a Literal,
or throws a GraphUtilException if that value is not a Literal. |
static Resource |
GraphUtil.getUniqueObjectResource(Graph graph,
Resource subj,
URI pred)
Utility method that casts the return value of GraphUtil.getUniqueObject(Graph, Resource, URI, Resource[]) to a Resource,
or throws a GraphUtilException if that value is not a Resource. |
static URI |
GraphUtil.getUniqueObjectURI(Graph graph,
Resource subj,
URI pred)
Utility method that casts the return value of GraphUtil.getUniqueObject(Graph, Resource, URI, Resource[]) to a URI, or
throws a GraphUtilException if that value is not a URI. |
static Resource |
GraphUtil.getUniqueSubject(Graph graph,
URI pred,
Value obj,
Resource... contexts)
Gets the subject of the statement(s) with the specified predicate and object from the specified contexts in the supplied graph. |
static URI |
GraphUtil.getUniqueSubjectURI(Graph graph,
URI pred,
Value obj,
Resource... contexts)
Utility method that casts the return value of GraphUtil.getUniqueSubject(Graph, URI, Value, Resource[]) to a URI, or
throws a GraphUtilException if that value is not a URI. |
static void |
GraphUtil.remove(Graph graph,
Resource subj,
URI pred,
Value obj,
Resource... contexts)
Utility method that removes all statements matching the specified criteria from a graph. |
static void |
GraphUtil.setUniqueObject(Graph graph,
Resource subj,
URI pred,
Value obj,
Resource... contexts)
Adds the specified statement and makes sure that no other statements are present in the Graph with the same subject and predicate. |
| Uses of Graph in org.openrdf.query.dawg |
|---|
| Methods in org.openrdf.query.dawg that return Graph | |
|---|---|
static Graph |
DAWGTestResultSetUtil.toGraph(TupleQueryResult tqr)
|
| Uses of Graph in org.openrdf.repository.config |
|---|
| Methods in org.openrdf.repository.config with parameters of type Graph | |
|---|---|
static RepositoryImplConfig |
RepositoryImplConfigBase.create(Graph graph,
Resource implNode)
|
static RepositoryConfig |
RepositoryConfig.create(Graph graph,
Resource repositoryNode)
Creates a new RepositoryConfig object and initializes it by supplying the graph and repositoryNode to its parse method. |
Resource |
RepositoryImplConfigBase.export(Graph graph)
|
Resource |
RepositoryImplConfig.export(Graph graph)
|
void |
RepositoryConfig.export(Graph graph)
|
Resource |
DelegatingRepositoryImplConfigBase.export(Graph graph)
|
void |
RepositoryImplConfigBase.parse(Graph graph,
Resource implNode)
|
void |
RepositoryImplConfig.parse(Graph graph,
Resource implNode)
|
void |
RepositoryConfig.parse(Graph graph,
Resource repositoryNode)
|
void |
DelegatingRepositoryImplConfigBase.parse(Graph graph,
Resource implNode)
|
| Uses of Graph in org.openrdf.repository.http.config |
|---|
| Methods in org.openrdf.repository.http.config with parameters of type Graph | |
|---|---|
Resource |
HTTPRepositoryConfig.export(Graph graph)
|
void |
HTTPRepositoryConfig.parse(Graph graph,
Resource implNode)
|
| Uses of Graph in org.openrdf.repository.sail.config |
|---|
| Methods in org.openrdf.repository.sail.config with parameters of type Graph | |
|---|---|
Resource |
SailRepositoryConfig.export(Graph graph)
|
void |
SailRepositoryConfig.parse(Graph graph,
Resource repImplNode)
|
| Uses of Graph in org.openrdf.sail.config |
|---|
| Methods in org.openrdf.sail.config with parameters of type Graph | |
|---|---|
Resource |
SailImplConfigBase.export(Graph graph)
|
Resource |
SailImplConfig.export(Graph graph)
|
Resource |
DelegatingSailImplConfigBase.export(Graph graph)
|
void |
SailImplConfigBase.parse(Graph graph,
Resource implNode)
|
void |
SailImplConfig.parse(Graph graph,
Resource implNode)
|
void |
DelegatingSailImplConfigBase.parse(Graph graph,
Resource implNode)
|
static SailImplConfig |
SailConfigUtil.parseRepositoryImpl(Graph graph,
Resource implNode)
|
| Uses of Graph in org.openrdf.sail.memory.config |
|---|
| Methods in org.openrdf.sail.memory.config with parameters of type Graph | |
|---|---|
Resource |
MemoryStoreConfig.export(Graph graph)
|
void |
MemoryStoreConfig.parse(Graph graph,
Resource implNode)
|
| Uses of Graph in org.openrdf.sail.nativerdf.config |
|---|
| Methods in org.openrdf.sail.nativerdf.config with parameters of type Graph | |
|---|---|
Resource |
NativeStoreConfig.export(Graph graph)
|
void |
NativeStoreConfig.parse(Graph graph,
Resource implNode)
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||