public interface Statement extends Serializable
Additional utility functionality for working with Statement
objects is available in the
org.eclipse.rdf4j.model.util.Statements
utility class.
Modifier and Type | Method and 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.
|
Resource |
getSubject()
Gets the subject of this statement.
|
int |
hashCode()
Computes the hash code of this statement.
|
Resource getSubject()
IRI getPredicate()
Value getObject()
Resource getContext()
boolean equals(Object other)
int hashCode()
hashCode
in class Object
Objects.hash
(
getSubject()
, getPredicate()
, getObject()
, getContext()
)Copyright © 2015-2020 Eclipse Foundation. All Rights Reserved.