Uses of Interface
org.openrdf.model.Statement

Packages that use Statement
org.openrdf.model RDF model interfaces.  
org.openrdf.model.impl Implementations of the RDF model interfaces. 
org.openrdf.sesame.admin Functionality for adding and deleting data to/from a repository. 
org.openrdf.sesame.omm   
org.openrdf.sesame.sail RDF Storage And Inference Layer.  
org.openrdf.sesame.sail.util Generic utility iterators for RDF SAIL implementations. 
org.openrdf.sesame.sailimpl.memory An implementation of the RDF SAIL API that uses main memory for storage.  
org.openrdf.sesame.sailimpl.nativerdf   
org.openrdf.sesame.sailimpl.omm.security   
org.openrdf.sesame.sailimpl.rdbms A generic SAIL implementation for relational databases. 
org.openrdf.sesame.sailimpl.rdbms.iterators   
 

Uses of Statement in org.openrdf.model
 

Methods in org.openrdf.model that return Statement
 Statement ValueFactory.createStatement(Resource subject, URI predicate, Value object)
          Creates a new statement with the supplied subject, predicate and object.
 

Methods in org.openrdf.model with parameters of type Statement
 void Graph.add(Statement statement)
          Adds a single statement to the graph.
 boolean Graph.contains(Statement statement)
          Checks if the supplied statement is present in the graph.
 int Graph.remove(Statement statement)
          Remove the supplied statement from the graph.
 

Uses of Statement in org.openrdf.model.impl
 

Classes in org.openrdf.model.impl that implement Statement
 class StatementImpl
          An implementation of the Statement interface.
 

Methods in org.openrdf.model.impl that return Statement
 Statement ValueFactoryImpl.createStatement(Resource subject, URI predicate, Value object)
           
 

Methods in org.openrdf.model.impl with parameters of type Statement
 void GraphImpl.add(Statement st)
           
 boolean GraphImpl.contains(Statement st)
           
 int GraphImpl.remove(Statement st)
           
 

Uses of Statement in org.openrdf.sesame.admin
 

Methods in org.openrdf.sesame.admin with parameters of type Statement
 void XmlAdminMsgWriter.notification(String msg, int lineNo, int colNo, Statement statement)
           
 void XmlAdminMsgWriter.warning(String msg, int lineNo, int colNo, Statement statement)
           
 void XmlAdminMsgWriter.error(String msg, int lineNo, int colNo, Statement statement)
           
 void StdOutAdminListener.notification(String msg, int lineNo, int colNo, Statement statement)
           
 void StdOutAdminListener.warning(String msg, int lineNo, int colNo, Statement statement)
           
 void StdOutAdminListener.error(String msg, int lineNo, int colNo, Statement statement)
           
 void HtmlAdminMsgWriter.notification(String msg, int lineNo, int colNo, Statement statement)
           
 void HtmlAdminMsgWriter.warning(String msg, int lineNo, int colNo, Statement statement)
           
 void HtmlAdminMsgWriter.error(String msg, int lineNo, int colNo, Statement statement)
           
 void DummyAdminListener.notification(String msg, int lineNo, int columnNo, Statement stat)
           
 void DummyAdminListener.warning(String msg, int lineNo, int columnNo, Statement stat)
           
 void DummyAdminListener.error(String msg, int lineNo, int columnNo, Statement stat)
           
 void AdminMsgCollector.notification(String msg, int lineNo, int columnNo, Statement stat)
           
 void AdminMsgCollector.warning(String msg, int lineNo, int columnNo, Statement stat)
           
 void AdminMsgCollector.error(String msg, int lineNo, int columnNo, Statement stat)
           
 void AdminListener.notification(String msg, int lineNo, int columnNo, Statement statement)
          A notification message (not an error) with optionally line and column number and the statement to indicate the source of the notification.
 void AdminListener.warning(String msg, int lineNo, int columnNo, Statement statement)
          A warning message with optionally line and column number and the statement to indicate the source of the warning.
 void AdminListener.error(String msg, int lineNo, int columnNo, Statement statement)
          An error message with optionally line and column number and the statement to indicate the source of the error.
 

Uses of Statement in org.openrdf.sesame.omm
 

Methods in org.openrdf.sesame.omm with parameters of type Statement
 boolean SecurityServices.isStatementAccessible(Statement st, Right right)
          Checks the accessibility of a statement according the security policy and a given right.
 

Uses of Statement in org.openrdf.sesame.sail
 

Methods in org.openrdf.sesame.sail that return Statement
 Statement StatementIterator.next()
          Gets the next statement.
 

Uses of Statement in org.openrdf.sesame.sail.util
 

Methods in org.openrdf.sesame.sail.util that return Statement
 Statement SingleStatementIterator.next()
           
 Statement EmptyStatementIterator.next()
          Always throws a NoSuchElementException as there are no results in an EmptyStatementIterator.
 

Uses of Statement in org.openrdf.sesame.sailimpl.memory
 

Classes in org.openrdf.sesame.sailimpl.memory that implement Statement
 class MemStatement
          A MemStatement is a Statement which has a flag setting indicating whether the statement is explicit or inferred.
 

Methods in org.openrdf.sesame.sailimpl.memory that return Statement
 Statement StatementList.get(int index)
           
 Statement RdfSource.createStatement(Resource subject, URI predicate, Value object)
           
 

Methods in org.openrdf.sesame.sailimpl.memory with parameters of type Statement
 void ValueNode.addObjectStatement(Statement st)
          Adds a statement to this ValueNode's list of statements for which it is the object.
 void ValueNode.removeObjectStatement(Statement st)
          Removes a statement from this ValueNode's list of statements for which it is the object.
 void URINode.addSubjectStatement(Statement st)
          Adds a statement to this URINode's list of statements for which it is the subject.
 void URINode.removeSubjectStatement(Statement st)
          Removes a statement from this URINode's list of statements for which it is the subject.
 void URINode.addPredicateStatement(Statement st)
          Adds a statement to this URINode's list of statements for which it is the predicate.
 void URINode.removePredicateStatement(Statement st)
          Removes a statement from this URINode's list of statements for which it is the predicate.
 void URINode.addObjectStatement(Statement st)
          Adds a statement to this URINode's list of statements for which it is the object.
 void URINode.removeObjectStatement(Statement st)
          Removes a statement from this URINode's list of statements for which it is the object.
 void StatementList.add(Statement st)
           
 void StatementList.remove(Statement st)
           
 void ResourceNode.addSubjectStatement(Statement st)
          Adds a statement to this ResourceNode's list of statements for which it is the subject.
 void ResourceNode.removeSubjectStatement(Statement st)
          Removes a statement from this ResourceNode's list of statements for which it is the subject.
 void LiteralNode.addObjectStatement(Statement st)
          Adds a statement to this LiteralNode's list of statements for which it is the object.
 void LiteralNode.removeObjectStatement(Statement st)
          Removes a statement from this ResourceNode's list of statements for which it is the object.
 void BNodeNode.addSubjectStatement(Statement st)
          Adds a statement to this BNodeNode's list of statements for which it is the subject.
 void BNodeNode.removeSubjectStatement(Statement st)
          Removes a statement from this BNodeNode's list of statements for which it is the subject.
 void BNodeNode.addObjectStatement(Statement st)
          Adds a statement to this BNodeNode's list of statements for which it is the object.
 void BNodeNode.removeObjectStatement(Statement st)
          Removes a statement from this BNodeNode's list of statements for which it is the object.
 

Uses of Statement in org.openrdf.sesame.sailimpl.nativerdf
 

Methods in org.openrdf.sesame.sailimpl.nativerdf that return Statement
 Statement ValueStore.createStatement(Resource subject, URI predicate, Value object)
           
 Statement NativeStatementIterator.next()
           
 

Uses of Statement in org.openrdf.sesame.sailimpl.omm.security
 

Methods in org.openrdf.sesame.sailimpl.omm.security that return Statement
 Statement StatementFilterIterator.next()
           
 

Methods in org.openrdf.sesame.sailimpl.omm.security with parameters of type Statement
 boolean SecuritySail.isStatementAccessible(Statement st, Right right)
           
 

Uses of Statement in org.openrdf.sesame.sailimpl.rdbms
 

Methods in org.openrdf.sesame.sailimpl.rdbms that return Statement
 Statement RdfSource.createStatement(Resource subject, URI predicate, Value object)
           
 

Uses of Statement in org.openrdf.sesame.sailimpl.rdbms.iterators
 

Methods in org.openrdf.sesame.sailimpl.rdbms.iterators that return Statement
 Statement RdbmsStatementIterator.next()
           
 



Copyright © 2002-2006 Aduna BV, GNU LGPL License applies.