Package org.apache.jena.graph.impl
Class WrappedCapabilities
java.lang.Object
org.apache.jena.graph.impl.WrappedCapabilities
- All Implemented Interfaces:
Capabilities
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionboolean
Answer true iffGraph.add(org.apache.jena.graph.Triple)
can be used to add at least some triples to the graph.boolean
Answer true iffGraph.delete(org.apache.jena.graph.Triple)
can be used to remove at least some triples from the graph.boolean
Answer true iff this graph compares literals for equality by value in find() operations, rather just applying RDFTerm equality.boolean
Answer true iff Graph::size() is accurate.
-
Constructor Details
-
WrappedCapabilities
-
-
Method Details
-
sizeAccurate
public boolean sizeAccurate()Description copied from interface:Capabilities
Answer true iff Graph::size() is accurate.- Specified by:
sizeAccurate
in interfaceCapabilities
-
addAllowed
public boolean addAllowed()Description copied from interface:Capabilities
Answer true iffGraph.add(org.apache.jena.graph.Triple)
can be used to add at least some triples to the graph.- Specified by:
addAllowed
in interfaceCapabilities
-
deleteAllowed
public boolean deleteAllowed()Description copied from interface:Capabilities
Answer true iffGraph.delete(org.apache.jena.graph.Triple)
can be used to remove at least some triples from the graph.- Specified by:
deleteAllowed
in interfaceCapabilities
-
handlesLiteralTyping
public boolean handlesLiteralTyping()Description copied from interface:Capabilities
Answer true iff this graph compares literals for equality by value in find() operations, rather just applying RDFTerm equality. Only applies toGraphMem
. TDB models have this effect because of canonicalization for certain datatypes and ranges, SDB models don't.- Specified by:
handlesLiteralTyping
in interfaceCapabilities
-