Package org.eclipse.rdf4j.model.base
Class AbstractStatement
- java.lang.Object
-
- org.eclipse.rdf4j.model.base.AbstractStatement
-
- All Implemented Interfaces:
Serializable
,Statement
- Direct Known Subclasses:
SimpleStatement
public abstract class AbstractStatement extends Object implements Statement
Base class forStatement
, offering common functionality.- Since:
- 3.5.0
- Author:
- Alessandro Bollini
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AbstractStatement()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
Compares this statement to another object.int
hashCode()
Computes the hash code of this statement.String
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
-
-
-
-
Method Detail
-
equals
public boolean equals(Object o)
Description copied from interface:Statement
Compares this statement to another object.
-
hashCode
public int hashCode()
Description copied from interface:Statement
Computes the hash code of this statement.- Specified by:
hashCode
in interfaceStatement
- Overrides:
hashCode
in classObject
- Returns:
- a hash code for this statement computed as
Objects.hash
(Statement.getSubject()
,Statement.getPredicate()
,Statement.getObject()
,Statement.getContext()
)
-
-