Package org.eclipse.rdf4j.model.impl
Class ContextStatement
- java.lang.Object
-
- org.eclipse.rdf4j.model.base.AbstractStatement
-
- org.eclipse.rdf4j.model.impl.SimpleStatement
-
- org.eclipse.rdf4j.model.impl.ContextStatement
-
- All Implemented Interfaces:
Serializable
,Statement
- Direct Known Subclasses:
ContextStatementImpl
,ExtensibleContextStatement
,LinkedHashModel.ModelStatement
,MemStatement
public class ContextStatement extends SimpleStatement
An extension ofSimpleStatement
that adds a context field.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
ContextStatement(Resource subject, IRI predicate, Value object, Resource context)
Creates a new Statement with the supplied subject, predicate and object for the specified associated context.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Resource
getContext()
Gets the context of this statement.String
toString()
-
Methods inherited from class org.eclipse.rdf4j.model.impl.SimpleStatement
getObject, getPredicate, getSubject
-
Methods inherited from class org.eclipse.rdf4j.model.base.AbstractStatement
equals, hashCode
-
-
-
-
Constructor Detail
-
ContextStatement
protected ContextStatement(Resource subject, IRI predicate, Value object, Resource context)
Creates a new Statement with the supplied subject, predicate and object for the specified associated context.- Parameters:
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.context
- The statement's context, null to indicate no context is associated.
-
-
Method Detail
-
getContext
public Resource getContext()
Description copied from interface:Statement
Gets the context of this statement.- Specified by:
getContext
in interfaceStatement
- Overrides:
getContext
in classSimpleStatement
- Returns:
- The statement's context, or null in case of the null context or if not applicable.
-
toString
public String toString()
- Overrides:
toString
in classAbstractStatement
-
-