Package org.apache.jena.rdfs
Class GraphRDFS
- java.lang.Object
-
- org.apache.jena.sparql.graph.GraphWrapper
-
- org.apache.jena.rdfs.GraphRDFS
-
- All Implemented Interfaces:
Graph
- Direct Known Subclasses:
GraphIncRDFS
public class GraphRDFS extends GraphWrapper
RDFS graph over a base graph.
-
-
Field Summary
-
Fields inherited from interface org.apache.jena.graph.Graph
emptyGraph
-
-
Constructor Summary
Constructors Constructor Description GraphRDFS(Graph graph, ConfigRDFS<Node> setup)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
dependsOn(Graph other)
ExtendedIterator<Triple>
find(Node s, Node p, Node o)
ExtendedIterator<Triple>
find(Triple m)
int
size()
java.util.stream.Stream<Triple>
stream(Node s, Node p, Node o)
-
Methods inherited from class org.apache.jena.sparql.graph.GraphWrapper
add, clear, close, contains, contains, delete, get, getCapabilities, getEventManager, getPrefixMapping, getTransactionHandler, isClosed, isEmpty, isIsomorphicWith, remove
-
-
-
-
Constructor Detail
-
GraphRDFS
public GraphRDFS(Graph graph, ConfigRDFS<Node> setup)
-
-
Method Detail
-
find
public ExtendedIterator<Triple> find(Triple m)
- Specified by:
find
in interfaceGraph
- Overrides:
find
in classGraphWrapper
-
find
public ExtendedIterator<Triple> find(Node s, Node p, Node o)
- Specified by:
find
in interfaceGraph
- Overrides:
find
in classGraphWrapper
-
size
public int size()
- Specified by:
size
in interfaceGraph
- Overrides:
size
in classGraphWrapper
-
dependsOn
public boolean dependsOn(Graph other)
- Specified by:
dependsOn
in interfaceGraph
- Overrides:
dependsOn
in classGraphWrapper
-
-