public class StatementImpl extends Object implements Statement
Statement interface for statements that
don't have an associated context. For statements that do have an associated
context, ContextStatementImpl can be used.| Constructor and Description |
|---|
StatementImpl(Resource subject,
URI predicate,
Value object)
Creates a new Statement with the supplied subject, predicate and object.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(Object other)
Compares a statement object to another object.
|
Resource |
getContext()
Gets the context of this statement.
|
Value |
getObject()
Gets the object of this statement.
|
URI |
getPredicate()
Gets the predicate of this statement.
|
Resource |
getSubject()
Gets the subject of this statement.
|
int |
hashCode()
The hash code of a statement is defined as:
961 * subject.hashCode() + 31 * predicate.hashCode() + object.hashCode().
|
String |
toString()
Gives a String-representation of this Statement that can be used for
debugging.
|
public StatementImpl(Resource subject, URI predicate, Value object)
subject - The statement's subject, must not be null.predicate - The statement's predicate, must not be null.object - The statement's object, must not be null.public Resource getSubject()
StatementgetSubject in interface Statementpublic URI getPredicate()
StatementgetPredicate in interface Statementpublic Value getObject()
Statementpublic Resource getContext()
StatementgetContext in interface Statementpublic boolean equals(Object other)
Statementpublic int hashCode()
StatementString.hashCode() is
defined.Copyright © 2001-2014 Aduna. All Rights Reserved.