java.lang.Object
org.apache.jena.reasoner.FGraph
- All Implemented Interfaces:
Finder
Wrapper round a Graph to implement the slightly modified Finder
interface.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionboolean
contains
(TriplePattern pattern) Return true if the given pattern occurs somewhere in the find sequence.find
(TriplePattern pattern) Basic pattern lookup interface.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.getGraph()
Returns the graph.
-
Constructor Details
-
FGraph
Constructor
-
-
Method Details
-
find
Basic pattern lookup interface. -
findWithContinuation
Extended find interface used in situations where the implementator may or may not be able to answer the complete query. It will attempt to answer the pattern but if its answers are not known to be complete then it will also pass the request on to the nested Finder to append more results.- Specified by:
findWithContinuation
in interfaceFinder
- Parameters:
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.
-
getGraph
Returns the graph.- Returns:
- Graph
-
contains
Return true if the given pattern occurs somewhere in the find sequence.
-