org.openrdf.model
Interface Statement

All Superinterfaces:
java.lang.Comparable, java.io.Serializable
All Known Subinterfaces:
Triple

public interface Statement
extends java.lang.Comparable, java.io.Serializable

An RDF statement.


Method Summary
 Value getObject()
          Gets the object of this statement.
 URI getPredicate()
          Gets the predicate of this statement.
 Resource getSubject()
          Gets the subject of this statement.
 
Methods inherited from interface java.lang.Comparable
compareTo
 

Method Detail

getSubject

Resource getSubject()
Gets the subject of this statement.

Returns:
The statement's subject.

getPredicate

URI getPredicate()
Gets the predicate of this statement.

Returns:
The statement's predicate.

getObject

Value getObject()
Gets the object of this statement.

Returns:
The statement's object.