Interface Findable
-
- All Known Implementing Classes:
FindableCollection
public interface FindableMinimal interface to find by pattern
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description booleancontains(Node s, Node p, Node o)Return whether any triple matches the (s,p,o) pattern.default intcount(Node s, Node p, Node o)Return the number of triples matching the (s,p,o) pattern.java.util.Iterator<Triple>find(Node s, Node p, Node o)Return an iterator over all triples matching the(s,p,o)pattern.
-
-
-
Method Detail
-
find
java.util.Iterator<Triple> find(Node s, Node p, Node o)
Return an iterator over all triples matching the(s,p,o)pattern. Each element of(s,p,o)can be concrete, or the wildcardNode.ANY.
-
contains
boolean contains(Node s, Node p, Node o)
Return whether any triple matches the (s,p,o) pattern. Each element of(s,p,o)can be concrete, or the wildcardNode.ANY.
-
-