|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.hp.hpl.jena.graph.impl.GraphBase
com.hp.hpl.jena.reasoner.BaseInfGraph
com.hp.hpl.jena.reasoner.transitiveReasoner.TransitiveInfGraph
Implementation of InfGraph used by the TransitiveReasoner. This is returned by the TransitiveReasoner when a data graph (together with an optional schema) has been bound.
The cached property and class graphs are calculated by the reasoner when the schema is bound. If the data graph does not include schema information then the caches generated at schema binding stage are reused here. Otherwise the caches are regenerated.
Field Summary |
Fields inherited from interface com.hp.hpl.jena.graph.Graph |
ADD, DELETE, ORDERED, SIZE |
Constructor Summary | |
TransitiveInfGraph(Graph data,
TransitiveReasoner reasoner)
Constructor. |
Method Summary | |
void |
add(Triple t)
Add one triple to the data graph, run any rules triggered by the new data item, recursively adding any generated triples. |
int |
capabilities()
Returns the bitwise or of ADD, DELETE, SIZE and ORDERED, to show the capabilities of this implementation of Graph. |
void |
delete(Triple t)
Removes the triple t (if possible) from the set belonging to this graph. |
ExtendedIterator |
find(Node subject,
Node property,
Node object)
Returns an iterator over Triples. |
ExtendedIterator |
find(TriplePattern pattern)
Basic pattern lookup interface. |
ExtendedIterator |
findWithContinuation(TriplePattern pattern,
Finder continuation)
Extended find interface used in situations where the implementator may or may not be able to answer the complete query. |
Graph |
getSchemaGraph()
Return the schema graph, if any, bound into this inference graph. |
void |
prepare()
Perform any initial processing and caching. |
Methods inherited from class com.hp.hpl.jena.reasoner.BaseInfGraph |
cloneWithPremises, contains, contains, find, find, getDerivation, getGlobalProperty, getRawGraph, getReasoner, rebind, rebind, reset, setDerivationLogging, size, testGlobalProperty, validate |
Methods inherited from class com.hp.hpl.jena.graph.impl.GraphBase |
close, dependsOn, getBulkUpdateHandler, getCapabilities, getEventManager, getPrefixMapping, getReifier, getTransactionHandler, isIsomorphicWith, notifyAdd, notifyDelete, performAdd, performDelete, queryHandler, toString, withReification |
Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Methods inherited from interface com.hp.hpl.jena.graph.Graph |
close, dependsOn, getBulkUpdateHandler, getCapabilities, getEventManager, getPrefixMapping, getReifier, getTransactionHandler, isIsomorphicWith, queryHandler |
Constructor Detail |
public TransitiveInfGraph(Graph data, TransitiveReasoner reasoner)
reasoner
- the parent instance of the transitive reasoner,
including any precomputed class and property cachesdata
- the data graph being bound in.Method Detail |
public void prepare()
prepare
in interface InfGraph
prepare
in class BaseInfGraph
public Graph getSchemaGraph()
getSchemaGraph
in class BaseInfGraph
public ExtendedIterator findWithContinuation(TriplePattern pattern, Finder continuation)
findWithContinuation
in class BaseInfGraph
pattern
- a TriplePattern to be matched against the datacontinuation
- either a Finder or a normal Graph which
will be asked for additional match results if the implementor
may not have completely satisfied the query.public ExtendedIterator find(Node subject, Node property, Node object)
find
in interface Graph
find
in class BaseInfGraph
public ExtendedIterator find(TriplePattern pattern)
find
in class BaseInfGraph
pattern
- a TriplePattern to be matched against the data
public void add(Triple t)
add
in interface Graph
add
in class BaseInfGraph
public int capabilities()
capabilities
in interface Graph
capabilities
in class BaseInfGraph
public void delete(Triple t)
delete
in interface Graph
delete
in class BaseInfGraph
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |