Package org.eclipse.rdf4j.model.impl
Class LinkedHashModel.ModelStatement
- java.lang.Object
-
- org.eclipse.rdf4j.model.impl.GenericStatement<Resource,IRI,Value>
-
- org.eclipse.rdf4j.model.impl.LinkedHashModel.ModelStatement
-
- All Implemented Interfaces:
Serializable
,Statement
- Enclosing class:
- LinkedHashModel
public static class LinkedHashModel.ModelStatement extends GenericStatement<Resource,IRI,Value>
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class org.eclipse.rdf4j.model.impl.GenericStatement
context, object, predicate, subject
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object other)
Compares this statement to another object.Resource
getContext()
Gets the context of this statement.Value
getObject()
Gets the object of this statement.IRI
getPredicate()
Gets the predicate of this statement.Statement
getStatement()
Resource
getSubject()
Gets the subject of this statement.-
Methods inherited from class org.eclipse.rdf4j.model.impl.GenericStatement
hashCode, toString
-
-
-
-
Method Detail
-
getSubject
public Resource getSubject()
Description copied from interface:Statement
Gets the subject of this statement.- Specified by:
getSubject
in interfaceStatement
- Overrides:
getSubject
in classGenericStatement<Resource,IRI,Value>
- Returns:
- The statement's subject.
-
getPredicate
public IRI getPredicate()
Description copied from interface:Statement
Gets the predicate of this statement.- Specified by:
getPredicate
in interfaceStatement
- Overrides:
getPredicate
in classGenericStatement<Resource,IRI,Value>
- Returns:
- The statement's predicate.
-
getObject
public Value getObject()
Description copied from interface:Statement
Gets the object of this statement.
-
getContext
public Resource getContext()
Description copied from interface:Statement
Gets the context of this statement.- Specified by:
getContext
in interfaceStatement
- Overrides:
getContext
in classGenericStatement<Resource,IRI,Value>
- Returns:
- The statement's context, or null in case of the null context or if not applicable.
-
equals
public boolean equals(Object other)
Description copied from interface:Statement
Compares this statement to another object.- Specified by:
equals
in interfaceStatement
- Overrides:
equals
in classGenericStatement<Resource,IRI,Value>
- Parameters:
other
- 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
-
getStatement
public Statement getStatement()
-
-