|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use ModelRuntimeException | |
|---|---|
| org.ontoware.rdf2go | |
| org.ontoware.rdf2go.exception | |
| org.ontoware.rdf2go.model | |
| org.ontoware.rdf2go.model.node.impl | |
| Uses of ModelRuntimeException in org.ontoware.rdf2go |
|---|
| Methods in org.ontoware.rdf2go that throw ModelRuntimeException | |
|---|---|
Model |
ModelFactory.createModel()
Create a default in-memory ModelSet with no inferencing. |
Model |
ModelFactory.createModel(java.util.Properties p)
Create a Model configured by the given properties. |
Model |
ModelFactory.createModel(Reasoning reasoning)
Create a new Model with inferencing. |
Model |
ModelFactory.createModel(URI contextURI)
Create a default in-memory ModelSet with no inferencing and the given context URI. |
ModelSet |
ModelFactory.createModelSet()
create a default in-memory ModelSet with no inferencing. |
ModelSet |
ModelFactory.createModelSet(java.util.Properties p)
Create a ModelSet configured by the given properties. |
ModelSet |
ModelFactory.createModelSet(Reasoning reasoning)
Create a default in-memory ModelSet with given inferencing. |
static void |
RDF2Go.register(java.lang.String modelFactoryClassname)
|
| Uses of ModelRuntimeException in org.ontoware.rdf2go.exception |
|---|
| Subclasses of ModelRuntimeException in org.ontoware.rdf2go.exception | |
|---|---|
class |
LockException
|
class |
MalformedQueryException
This runtime exception is thrown if a given query string could not be parsed and interpreted as a valid query string. |
class |
QueryLanguageNotSupportedException
|
class |
ReasoningNotSupportedException
The intended type of reasoning is not supported by this Adapter. |
class |
SyntaxNotSupportedException
A runtime exception thrown if a method offers a choice of syntaxes, but the chosen syntax is not supported by the adapter. |
| Uses of ModelRuntimeException in org.ontoware.rdf2go.model |
|---|
| Methods in org.ontoware.rdf2go.model that throw ModelRuntimeException | |
|---|---|
void |
ModelWriter.addAll(java.util.Iterator<? extends Statement> other)
Add all statements contained in 'other' to this model = 'union' |
void |
ModelSetAddRemove.addAll(java.util.Iterator<? extends Statement> statement)
For each statement in the iterator, this method creates a Model named statement.getContextURI if needed. |
void |
Model.addModel(Model model)
Adds a complete Model to this Model. |
void |
ModelSet.addModel(Model model,
URI contextURI)
Adds a complete Model to the given contextURI. |
void |
ModelSet.addModelSet(ModelSet modelSet)
Adds a complete ModelSet to this ModelSet. |
void |
ModelWriter.addStatement(Resource subject,
URI predicate,
Node object)
adds a (subject, property ,object)-statement to this model |
void |
ModelWriter.addStatement(Resource subject,
URI predicate,
java.lang.String literal)
adds a (subject, property, literal)-statement to the model. |
void |
ModelWriter.addStatement(Resource subject,
URI predicate,
java.lang.String literal,
java.lang.String languageTag)
adds a (subject, property, liteal, language-tag)-statement to the model. |
void |
ModelWriter.addStatement(Resource subject,
URI predicate,
java.lang.String literal,
URI datatypeURI)
adds a (subject, property, literal ,datatype)-statement to the model. |
void |
ModelWriter.addStatement(Statement statement)
adds a statement to this model |
void |
ModelSetAddRemove.addStatement(Statement statement)
This method creates a Model named statement.getContextURI if needed. |
void |
ModelWriter.addStatement(java.lang.String subjectURIString,
URI predicate,
java.lang.String literal)
adds a (subject, property, literal)-statement to the model. |
void |
ModelWriter.addStatement(java.lang.String subjectURIString,
URI predicate,
java.lang.String literal,
java.lang.String languageTag)
adds a (subject, property, liteal, language-tag)-statement to the model. |
void |
ModelWriter.addStatement(java.lang.String subjectURIString,
URI predicate,
java.lang.String literal,
URI datatypeURI)
adds a (subject, property, literal, data-type)-statement to the model. |
void |
ModelSetAddRemove.addStatement(URI contextURI,
Resource subject,
URI predicate,
Node object)
This method creates a Model named 'contextURI' if needed. |
void |
Commitable.commit()
Writes all changes to underlying persistence layer - if such a layer is used by the implementation. |
boolean |
FindableModel.contains(ResourceOrVariable subject,
UriOrVariable predicate,
NodeOrVariable object)
|
boolean |
FindableModel.contains(ResourceOrVariable subject,
UriOrVariable predicate,
java.lang.String plainLiteral)
Convenience function. |
boolean |
FindableModelSet.contains(Statement s)
|
boolean |
FindableModel.contains(Statement s)
|
boolean |
FindableModelSet.containsStatements(UriOrVariable contextURI,
ResourceOrVariable subject,
UriOrVariable predicate,
NodeOrVariable object)
|
long |
FindableModelSet.countStatements(QuadPattern pattern)
|
long |
FindableModel.countStatements(TriplePattern pattern)
|
DatatypeLiteral |
ModelValueFactory.createDatatypeLiteral(java.lang.String literal,
URI datatypeURI)
|
LanguageTagLiteral |
ModelValueFactory.createLanguageTagLiteral(java.lang.String literal,
java.lang.String langugeTag)
|
URI |
ModelSet.createURI(java.lang.String uriString)
Creates an RDF2Go URI. |
ClosableIterator<Statement> |
FindableModelSet.findStatements(QuadPattern pattern)
Search across all existing models and retunrs all statements matching the quad pattern |
ClosableIterator<Statement> |
FindableModel.findStatements(ResourceOrVariable subject,
UriOrVariable predicate,
NodeOrVariable object)
get all statements in the model with this subject, predicate and object. |
ClosableIterator<Statement> |
FindableModel.findStatements(TriplePattern pattern)
Iterator must be auto-close, i.e. when last element is fetched, the implementation must call close(). |
ClosableIterator<Statement> |
FindableModelSet.findStatements(UriOrVariable contextURI,
ResourceOrVariable subject,
UriOrVariable predicate,
NodeOrVariable object)
Search across all existing models |
Diff |
ModelAddRemove.getDiff(java.util.Iterator<? extends Statement> statements)
|
java.lang.String |
QueryRow.getLiteralValue(java.lang.String varname)
Convenience for
getValue("x").asString()
|
ClosableIterable<Statement> |
Sparqlable.queryConstruct(java.lang.String query,
java.lang.String querylanguage)
|
QueryResultTable |
Sparqlable.querySelect(java.lang.String query,
java.lang.String querylanguage)
returns results for queries in other query languages as a QueryResultTable as supported by underlying implementation. |
void |
ModelSetIO.readFrom(java.io.InputStream in)
Read from InputStream assuming to read an RDF/XML stream. |
void |
ModelIO.readFrom(java.io.InputStream in)
Read from InputStream assuming to read an RDF/XML stream. |
void |
ModelSetIO.readFrom(java.io.InputStream reader,
Syntax syntax)
Reads assuming the given syntax. |
void |
ModelIO.readFrom(java.io.InputStream reader,
Syntax syntax)
Reads assuming the given syntax. |
void |
ModelSetIO.readFrom(java.io.InputStream reader,
Syntax syntax,
java.lang.String baseURI)
Reads assuming the given syntax. |
void |
ModelIO.readFrom(java.io.InputStream in,
Syntax syntax,
java.lang.String baseURI)
Reads RDF data from the given InputStream in the given Syntax. |
void |
ModelSetIO.readFrom(java.io.Reader in)
Read from Reader assuming to read a TRiX stream in UTF8 encoding. |
void |
ModelIO.readFrom(java.io.Reader in)
Read from Reader assuming in UTF8 encoding. |
void |
ModelSetIO.readFrom(java.io.Reader in,
Syntax syntax)
Reads assuming the given syntax. |
void |
ModelIO.readFrom(java.io.Reader in,
Syntax syntax)
Reads assuming the given syntax. |
void |
ModelSetIO.readFrom(java.io.Reader in,
Syntax syntax,
java.lang.String baseURI)
Reads assuming the given syntax. |
void |
ModelIO.readFrom(java.io.Reader in,
Syntax syntax,
java.lang.String baseURI)
Reads RDF data from the given Reader in the given Syntax. |
void |
ModelSet.removeAll()
Removes all models, which is not the same as removing all statements from all models in this ModelSet. |
void |
ModelAddRemove.removeAll()
Removes all statements from this model. |
void |
ModelSetAddRemove.removeAll(java.util.Iterator<? extends Statement> statement)
For each statement in the iterator, the statement is removed form the model named statement.getContext(); If the model named statement.getContext() becomes empty, it remains in the ModelSet. |
void |
ModelAddRemove.removeAll(java.util.Iterator<? extends Statement> statements)
Removes all statements contained in 'other' from this model = 'difference' |
void |
ModelAddRemove.removeStatement(Resource subject,
URI predicate,
Node object)
remove a (subject, property ,object)-statement from the model |
void |
ModelAddRemove.removeStatement(Resource subject,
URI predicate,
java.lang.String literal)
|
void |
ModelAddRemove.removeStatement(Resource subject,
URI predicate,
java.lang.String literal,
java.lang.String languageTag)
remove a (subject, property ,literal, language tag)-statement from the model |
void |
ModelAddRemove.removeStatement(Resource subject,
URI predicate,
java.lang.String literal,
URI datatypeURI)
remove a (subject, property ,literal, datatype)-statement from the model datatype often is an uri for a xml schema datatype (xsd) |
void |
ModelSetAddRemove.removeStatement(Statement statement)
Removes the statement (s,p,o) from a model named statement.getContext(). |
void |
ModelAddRemove.removeStatement(Statement statement)
remove a rdf2go-statement from the model |
void |
ModelAddRemove.removeStatement(java.lang.String subjectURIString,
URI predicate,
java.lang.String literal)
|
void |
ModelAddRemove.removeStatement(java.lang.String subjectURIString,
URI predicate,
java.lang.String literal,
java.lang.String languageTag)
remove a (subject, property ,literal, language tag)-statement from the model |
void |
ModelAddRemove.removeStatement(java.lang.String subjectURIString,
URI predicate,
java.lang.String literal,
URI datatypeURI)
remove a (subject, property ,literal, datatype)-statement from the model datatype often is an uri for a xml schema datatype (xsd) |
void |
ModelSetAddRemove.removeStatement(URI contextURI,
Resource subject,
URI predicate,
Node object)
Removes the statement (s,p,o) from a model named contextURI. |
void |
ModelSetAddRemove.removeStatements(QuadPattern quadPattern)
Find all models matching the context of the pattern and remove all matching triple patterms from them |
void |
ModelRemovePatterns.removeStatements(ResourceOrVariable subject,
UriOrVariable predicate,
NodeOrVariable object)
remove a (subject, property ,object)-statement from the model |
void |
ModelRemovePatterns.removeStatements(TriplePattern triplePattern)
remove all matching triple patterms from the model |
void |
ModelSetAddRemove.removeStatements(UriOrVariable context,
ResourceOrVariable subject,
UriOrVariable predicate,
NodeOrVariable object)
Find all models matching the context, and remove all (subject, property ,object)-statements from these model |
long |
ModelSet.size()
The number of explicit statements. |
long |
Model.size()
For plain models without any inference, this is the exact number of explicit statements. |
boolean |
Sparqlable.sparqlAsk(java.lang.String query)
SPARQL ask queries |
ClosableIterable<Statement> |
Sparqlable.sparqlConstruct(java.lang.String query)
|
ClosableIterable<Statement> |
Sparqlable.sparqlDescribe(java.lang.String query)
Iterator must be auto-close, i.e. when last element is fetched, the implementation must call close(). |
QueryResultTable |
Sparqlable.sparqlSelect(java.lang.String queryString)
returns results for SPARQL Select queries, as supported by underlying implementation. |
void |
ModelAddRemove.update(Diff diff)
Deprecated. |
void |
ModelSetAddRemove.update(DiffReader diff)
Apply the changes given by this diff |
void |
ModelAddRemove.update(DiffReader diff)
Apply the changes given by this diff |
void |
ModelSetIO.writeTo(java.io.OutputStream out)
Writing a TRiX stream in UTF8 encoding For more info on TRiX read: http://www.hpl.hp.com/techreports/2003/HPL-2003-268.html |
void |
ModelIO.writeTo(java.io.OutputStream out)
Writing an RDF/XML stream in UTF8 encoding |
void |
ModelSetIO.writeTo(java.io.OutputStream out,
Syntax syntax)
Write the model to the passed writer, using the passed syntax. |
void |
ModelIO.writeTo(java.io.OutputStream out,
Syntax syntax)
Write the model to the passed writer, using the passed syntax. |
void |
ModelSetIO.writeTo(java.io.Writer out)
Write to writer in UTF8 and TRiX. |
void |
ModelIO.writeTo(java.io.Writer out)
Writing an RDF/XML stream in UTF8 encoding |
void |
ModelSetIO.writeTo(java.io.Writer out,
Syntax syntax)
Write the model to the passed writer, using the passed syntax. |
void |
ModelIO.writeTo(java.io.Writer out,
Syntax syntax)
Write the model to the passed writer, using the passed syntax. |
| Uses of ModelRuntimeException in org.ontoware.rdf2go.model.node.impl |
|---|
| Methods in org.ontoware.rdf2go.model.node.impl that throw ModelRuntimeException | |
|---|---|
boolean |
ResourceImpl.asBoolean()
|
java.util.Date |
ResourceImpl.asDate()
|
int |
ResourceImpl.asInt()
|
java.lang.String |
ResourceImpl.asString()
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||