1 6 7 package com.hp.hpl.jena.graph; 8 9 import com.hp.hpl.jena.shared.*; 10 import com.hp.hpl.jena.util.iterator.*; 11 12 18 19 public interface Reifier extends GetTriple 20 { 21 25 ExtendedIterator find( TripleMatch m ); 26 27 31 ExtendedIterator findExposed( TripleMatch m ); 32 33 38 ExtendedIterator findEither( TripleMatch m, boolean showHidden ); 39 40 43 int size(); 44 45 48 ReificationStyle getStyle(); 49 50 53 Graph getParentGraph(); 54 55 59 Node reifyAs( Node n, Triple t ); 60 61 64 boolean hasTriple( Node n ); 65 66 69 boolean hasTriple( Triple t ); 70 71 75 ExtendedIterator allNodes(); 76 77 81 ExtendedIterator allNodes( Triple t ); 82 83 87 void remove( Node n, Triple t ); 88 89 92 void remove( Triple t ); 93 94 97 boolean handledAdd( Triple t ); 98 99 102 boolean handledRemove( Triple t ); 103 104 108 void close(); 109 } 110 111 140 | Popular Tags |