| java.lang.Object com.hp.hpl.jena.graph.impl.SimpleBulkUpdateHandler
All known Subclasses: com.hp.hpl.jena.mem.faster.GraphMemFasterBulkUpdateHandler, com.hp.hpl.jena.mem.GraphMemBulkUpdateHandler,
SimpleBulkUpdateHandler | public class SimpleBulkUpdateHandler implements BulkUpdateHandler(Code) | | A simple-minded implementation of the bulk update interface. This only
operates on (subclasses of) GraphBase, since it needs access to the
performAdd/performDelete operations.
It handles update events, with a special eye to not copying iterators unless
there is at least one listener registered with the graph's event manager.
author: kers |
Method Summary | |
public void | add(Triple[] triples) | public void | add(List triples) | protected void | add(List triples, boolean notify) | public void | add(Iterator it) | public void | add(Graph g) | public void | add(Graph g, boolean withReifications) | public void | addIterator(Iterator it, boolean notify) | public static void | addReifications(Graph ours, Graph g) | public void | delete(Triple[] triples) | public void | delete(List triples) | protected void | delete(List triples, boolean notify) | public void | delete(Iterator it) | public void | delete(Graph g) | public void | delete(Graph g, boolean withReifications) | public void | deleteIterator(Iterator it, boolean notify) | public static void | deleteReifications(Graph ours, Graph g) | protected void | notifyRemoveAll() | public void | remove(Node s, Node p, Node o) | public void | removeAll() | public static void | removeAll(Graph g, Node s, Node p, Node o) | public static void | removeAll(Graph g) |
add | protected void add(List triples, boolean notify)(Code) | | |
add | public void add(Graph g, boolean withReifications)(Code) | | |
delete | protected void delete(List triples, boolean notify)(Code) | | |
delete | public void delete(Graph g, boolean withReifications)(Code) | | |
deleteIterator | public void deleteIterator(Iterator it, boolean notify)(Code) | | |
deleteReifications | public static void deleteReifications(Graph ours, Graph g)(Code) | | |
notifyRemoveAll | protected void notifyRemoveAll()(Code) | | |
removeAll | public void removeAll()(Code) | | |
|
|