| com.hp.hpl.jena.graph.TripleMatch
All known Subclasses: com.hp.hpl.jena.graph.Triple,
TripleMatch | public interface TripleMatch (Code) | | Interface for triple matching; may become obsolete. do not assume this is
stable. Triple matches are defined by subject, predicate, and object, and
may be converted to triples [which in fact subsume the work of TripleMatch].
author: Jeremy Carroll author: kers |
asTriple | Triple asTriple()(Code) | | Answer a Triple capturing this match.
|
getMatchObject | Node getMatchObject()(Code) | | If it is known that all triples selected by this match will
have a common object, return that node, otherwise return null
|
getMatchPredicate | Node getMatchPredicate()(Code) | | If it is known that all triples selected by this match will
have a common predicate, return that node, otherwise return null
|
getMatchSubject | Node getMatchSubject()(Code) | | If it is known that all triples selected by this filter will
have a common subject, return that node, otherwise return null
|
|
|