| java.lang.Object org.openrdf.repository.base.RepositoryConnectionBase org.openrdf.repository.base.RepositoryConnectionWrapper
All known Subclasses: org.openrdf.repository.event.base.InterceptingRepositoryConnectionWrapper, org.openrdf.repository.event.base.NotifyingRepositoryConnectionWrapper, org.openrdf.repository.dataset.DatasetRepositoryConnection,
Method Summary | |
public void | add(File file, String baseURI, RDFFormat dataFormat, Resource... contexts) | public void | add(InputStream in, String baseURI, RDFFormat dataFormat, Resource... contexts) | public void | add(Iterable<? extends Statement> statements, Resource... contexts) | public void | add(Iteration<? extends Statement, E> statementIter, Resource... contexts) | public void | add(Reader reader, String baseURI, RDFFormat dataFormat, Resource... contexts) | public void | add(Resource subject, URI predicate, Value object, Resource... contexts) | public void | add(Statement st, Resource... contexts) | public void | add(URL url, String baseURI, RDFFormat dataFormat, Resource... contexts) | protected void | addWithoutCommit(Resource subject, URI predicate, Value object, Resource... contexts) | public void | clear(Resource... contexts) | public void | clearNamespaces() | public void | close() | public void | commit() | public void | exportStatements(Resource subj, URI pred, Value obj, boolean includeInferred, RDFHandler handler, Resource... contexts) | protected void | exportStatements(RepositoryResult<Statement> stIter, RDFHandler handler) Exports all statements contained in the supplied statement iterator and
all relevant namespace information to the supplied RDFHandler. | public RepositoryResult<Resource> | getContextIDs() | public RepositoryConnection | getDelegate() | public String | getNamespace(String prefix) | public RepositoryResult<Namespace> | getNamespaces() | public RepositoryResult<Statement> | getStatements(Resource subj, URI pred, Value obj, boolean includeInferred, Resource... contexts) | public boolean | hasStatement(Resource subj, URI pred, Value obj, boolean includeInferred, Resource... contexts) | public boolean | hasStatement(Statement st, boolean includeInferred, Resource... contexts) | public boolean | isAutoCommit() | protected boolean | isDelegatingAdd() If true then each add method will call
RepositoryConnectionWrapper.addWithoutCommit(Resource,URI,Value,Resource[]) . | protected boolean | isDelegatingRead() If true then the has/export/isEmpty methods will call
RepositoryConnectionWrapper.getStatements(Resource,URI,Value,boolean,Resource[]) . | protected boolean | isDelegatingRemove() If true then each remove method will call
RepositoryConnectionWrapper.removeWithoutCommit(Resource,URI,Value,Resource[]) . | public boolean | isEmpty() | public boolean | isOpen() | public BooleanQuery | prepareBooleanQuery(QueryLanguage ql, String query, String baseURI) | public GraphQuery | prepareGraphQuery(QueryLanguage ql, String query, String baseURI) | public Query | prepareQuery(QueryLanguage ql, String query, String baseURI) | public TupleQuery | prepareTupleQuery(QueryLanguage ql, String query, String baseURI) | public void | remove(Iterable<? extends Statement> statements, Resource... contexts) | public void | remove(Iteration<? extends Statement, E> statementIter, Resource... contexts) | public void | remove(Resource subject, URI predicate, Value object, Resource... contexts) | public void | remove(Statement st, Resource... contexts) | public void | removeNamespace(String prefix) | protected void | removeWithoutCommit(Resource subject, URI predicate, Value object, Resource... contexts) | public void | rollback() | public void | setAutoCommit(boolean autoCommit) | public void | setDelegate(RepositoryConnection delegate) | public void | setNamespace(String prefix, String name) | public long | size(Resource... contexts) |
RepositoryConnectionWrapper | public RepositoryConnectionWrapper(Repository repository)(Code) | | |
Fields inherited from org.openrdf.repository.base.RepositoryConnectionBase | final protected Logger logger(Code)(Java Doc)
|
Methods inherited from org.openrdf.repository.base.RepositoryConnectionBase | public void add(File file, String baseURI, RDFFormat dataFormat, Resource... contexts) throws IOException, RDFParseException, RepositoryException(Code)(Java Doc) public void add(URL url, String baseURI, RDFFormat dataFormat, Resource... contexts) throws IOException, RDFParseException, RepositoryException(Code)(Java Doc) public void add(InputStream in, String baseURI, RDFFormat dataFormat, Resource... contexts) throws IOException, RDFParseException, RepositoryException(Code)(Java Doc) public void add(Reader reader, String baseURI, RDFFormat dataFormat, Resource... contexts) throws IOException, RDFParseException, RepositoryException(Code)(Java Doc) public void add(Iterable<? extends Statement> statements, Resource... contexts) throws RepositoryException(Code)(Java Doc) public void add(Iteration<? extends Statement, E> statementIter, Resource... contexts) throws RepositoryException, E(Code)(Java Doc) public void add(Statement st, Resource... contexts) throws RepositoryException(Code)(Java Doc) public void add(Resource subject, URI predicate, Value object, Resource... contexts) throws RepositoryException(Code)(Java Doc) protected void addInputStreamOrReader(Object inputStreamOrReader, String baseURI, RDFFormat dataFormat, Resource... contexts) throws IOException, RDFParseException, RepositoryException(Code)(Java Doc) protected void addWithoutCommit(Statement st, Resource... contexts) throws RepositoryException(Code)(Java Doc) abstract protected void addWithoutCommit(Resource subject, URI predicate, Value object, Resource... contexts) throws RepositoryException(Code)(Java Doc) protected void autoCommit() throws RepositoryException(Code)(Java Doc) public void clear(Resource... contexts) throws RepositoryException(Code)(Java Doc) public void close() throws RepositoryException(Code)(Java Doc) public void export(RDFHandler handler, Resource... contexts) throws RepositoryException, RDFHandlerException(Code)(Java Doc) protected void finalize() throws Throwable(Code)(Java Doc) public Repository getRepository()(Code)(Java Doc) public boolean hasStatement(Resource subj, URI pred, Value obj, boolean includeInferred, Resource... contexts) throws RepositoryException(Code)(Java Doc) public boolean hasStatement(Statement st, boolean includeInferred, Resource... contexts) throws RepositoryException(Code)(Java Doc) public boolean isAutoCommit() throws RepositoryException(Code)(Java Doc) public boolean isEmpty() throws RepositoryException(Code)(Java Doc) public boolean isOpen() throws RepositoryException(Code)(Java Doc) public BooleanQuery prepareBooleanQuery(QueryLanguage ql, String query) throws MalformedQueryException, RepositoryException(Code)(Java Doc) public GraphQuery prepareGraphQuery(QueryLanguage ql, String query) throws MalformedQueryException, RepositoryException(Code)(Java Doc) public Query prepareQuery(QueryLanguage ql, String query) throws MalformedQueryException, RepositoryException(Code)(Java Doc) public TupleQuery prepareTupleQuery(QueryLanguage ql, String query) throws MalformedQueryException, RepositoryException(Code)(Java Doc) public void remove(Iterable<? extends Statement> statements, Resource... contexts) throws RepositoryException(Code)(Java Doc) public void remove(Iteration<? extends Statement, E> statementIter, Resource... contexts) throws RepositoryException, E(Code)(Java Doc) public void remove(Statement st, Resource... contexts) throws RepositoryException(Code)(Java Doc) public void remove(Resource subject, URI predicate, Value object, Resource... contexts) throws RepositoryException(Code)(Java Doc) protected void removeWithoutCommit(Statement st, Resource... contexts) throws RepositoryException(Code)(Java Doc) abstract protected void removeWithoutCommit(Resource subject, URI predicate, Value object, Resource... contexts) throws RepositoryException(Code)(Java Doc) public void setAutoCommit(boolean autoCommit) throws RepositoryException(Code)(Java Doc)
|
|
|