Class ExtensibleStatementImpl
java.lang.Object
org.eclipse.rdf4j.model.impl.GenericStatement<Resource,IRI,Value>
org.eclipse.rdf4j.sail.extensiblestore.valuefactory.ExtensibleStatementImpl
- All Implemented Interfaces:
Serializable
,Statement
,ExtensibleStatement
public class ExtensibleStatementImpl
extends GenericStatement<Resource,IRI,Value>
implements ExtensibleStatement
- See Also:
-
Field Summary
Fields inherited from class org.eclipse.rdf4j.model.impl.GenericStatement
context, object, predicate, subject
-
Constructor Summary
ConstructorDescriptionExtensibleStatementImpl
(Resource subject, IRI predicate, Value object, Resource context, boolean inferred) Creates a new Statement with the supplied subject, predicate and object for the specified associated context. -
Method Summary
Modifier and TypeMethodDescriptionboolean
Compares this statement to another object.int
hashCode()
Computes the hash code of this statement.boolean
Methods inherited from class org.eclipse.rdf4j.model.impl.GenericStatement
getContext, getObject, getPredicate, getSubject, toString
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface org.eclipse.rdf4j.model.Statement
getContext, getObject, getPredicate, getSubject
-
Constructor Details
-
ExtensibleStatementImpl
public ExtensibleStatementImpl(Resource subject, IRI predicate, Value object, Resource context, boolean inferred) 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 Details
-
isInferred
public boolean isInferred()- Specified by:
isInferred
in interfaceExtensibleStatement
-
equals
Description copied from interface:Statement
Compares this statement to another object.- Specified by:
equals
in interfaceStatement
- Overrides:
equals
in classGenericStatement<Resource,
IRI, Value> - Parameters:
o
- the object to compare this statement to- Returns:
true
if the other object is an instance ofStatement
and if their subjects, predicates, objects and contexts are equal;false
otherwise
-
hashCode
public int hashCode()Description copied from interface:Statement
Computes the hash code of this statement.- Specified by:
hashCode
in interfaceStatement
- Overrides:
hashCode
in classGenericStatement<Resource,
IRI, Value> - Returns:
- a hash code for this statement computed as
Objects.hash
(Statement.getSubject()
,Statement.getPredicate()
,Statement.getObject()
,Statement.getContext()
)
-