Codota Logo
GraphEvents.remove
Code IndexAdd Codota to your IDE (free)

How to use
remove
method
in
com.hp.hpl.jena.graph.GraphEvents

Best Java code snippets using com.hp.hpl.jena.graph.GraphEvents.remove (Showing top 8 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
OutputStreamWriter o =
  • Codota IconOutputStream out;new OutputStreamWriter(out)
  • Codota IconOutputStream out;String charsetName;new OutputStreamWriter(out, charsetName)
  • Codota IconHttpURLConnection connection;new OutputStreamWriter(connection.getOutputStream())
  • Smart code suggestions by Codota
}
origin: org.apache.clerezza.ext/org.apache.jena.jena-core

@Override
@Deprecated
public void remove( Node s, Node p, Node o )
  { removeAll( graph, s, p, o ); 
  manager.notifyEvent( graph, GraphEvents.remove( s, p, o ) ); }

origin: org.apache.clerezza.ext/org.apache.jena.jena-core

@Override
@Deprecated
public void remove( Node s, Node p, Node o )
  {
  base.remove( s, p, o );
  manager.notifyEvent( graph, GraphEvents.remove( s, p, o ) );
  }
origin: org.appdapter/org.appdapter.lib.remote

@Override public void remove(Node s, Node p, Node o) {
  removeAll(graph, s, p, o);
  manager.notifyEvent(graph, GraphEvents.remove(s, p, o));
}
origin: org.apache.clerezza.ext/org.apache.jena.jena-core

/**
  Remove all triples that match by find(s, p, o)
 */
@Override
public void remove( Node s, Node p, Node o )
{
  GraphUtil.remove(this, s, p, o) ;
  getEventManager().notifyEvent(this, GraphEvents.remove(s, p, o) ) ;
}

origin: org.apache.clerezza.ext/org.apache.jena.jena-core

@Override
public void remove(Node s, Node p, Node o)
{
  base.remove(s,p,o) ;
  getEventManager().notifyEvent(this, GraphEvents.remove(s, p, o) ) ;
}
origin: org.apache.clerezza.ext/org.apache.jena.jena-core

@Override
@Deprecated
public void remove( Node s, Node p, Node o )
  {
  BaseInfGraph g = (BaseInfGraph) graph;
  g.getRawGraph().remove( s, p, o );
  g.discardState();
  g.rebind();
  manager.notifyEvent( graph, GraphEvents.remove( s, p, o ) );
  }
origin: org.appdapter/org.appdapter.lib.remote

@Override public void remove(Node s, Node p, Node o) {
  ExtendedIterator<Triple> allTriples = find(s, p, o);
  for (Triple t : allTriples.toList()) {
    this.delete(t);
  }
  getEventManager().notifyEvent(this, GraphEvents.remove(s, p, o));
}
origin: org.apache.clerezza.ext/org.apache.jena.jena-core

@Override
public void remove( Node s, Node p, Node o )
{
  getRawGraph().remove( s, p, o );
  discardState();
  rebind();
  getEventManager().notifyEvent( this, GraphEvents.remove( s, p, o ) );
}

com.hp.hpl.jena.graphGraphEventsremove

Popular methods of GraphEvents

  • same

Popular in Java

  • Making http requests using okhttp
  • onRequestPermissionsResult (Fragment)
  • onCreateOptionsMenu (Activity)
  • getExternalFilesDir (Context)
  • Font (java.awt)
    The Font class represents fonts, which are used to render text in a visible way. A font provides the
  • BigInteger (java.math)
    Immutable arbitrary-precision integers. All operations behave as if BigIntegers were represented in
  • ArrayList (java.util)
    Resizable-array implementation of the List interface. Implements all optional list operations, and p
  • HashSet (java.util)
    This class implements the Set interface, backed by a hash table (actually a HashMap instance). It m
  • LinkedList (java.util)
    Doubly-linked list implementation of the List and Dequeinterfaces. Implements all optional list oper
  • StringUtils (org.apache.commons.lang)
    Operations on java.lang.String that arenull safe. * IsEmpty/IsBlank - checks if a String contains
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now