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()
Statement
getSubject
in interface Statement
public URI getPredicate()
Statement
getPredicate
in interface Statement
public Value getObject()
Statement
public Resource getContext()
Statement
getContext
in interface Statement
public boolean equals(Object other)
Statement
public int hashCode()
Statement
String.hashCode()
is
defined.Copyright © 2001-2016 Aduna. All Rights Reserved.