| org.ontoware.rdf2go.model.Statement
All known Subclasses: org.ontoware.rdf2go.model.impl.AbstractStatement, org.ontoware.rdf2go.model.impl.StatementImpl, org.ontoware.rdf2go.impl.jena24.StatementJena24Impl,
Statement | public interface Statement extends Comparable<Statement>,TriplePattern(Code) | | Statement representation in rdf2go
Implementations of Statement should have valid implementations of hashCode
and equals.
Compared by subject
author: mvo |
dump | public void dump(String[] options)(Code) | | debug output. Lazy implementation can just do nothing.
Parameters: options - |
getContext | public URI getContext()(Code) | | Note: this was set to be a Model before, but that would
have caused problems, when people accesssed the model via the Statement.
(compare to Jena, where graph and Model are separated. We are here on
graph level)
the context, where this statement was created. Returns null whennot in a ModelSet. |
getObject | public Node getObject()(Code) | | URI, String, TypedLiteral, LanguageTaggedLiteral or BlankNode |
getPredicate | public URI getPredicate()(Code) | | The URI representing the predicate (property) |
hashCode | public int hashCode()(Code) | | |
|
|