public class SimpleTriple extends Object implements Triple
Triple
interface.SimpleValueFactory
,
Serialized FormModifier | Constructor and Description |
---|---|
protected |
SimpleTriple(Resource subject,
IRI predicate,
Value object)
Creates a new Triple with the supplied subject, predicate and object.
|
Modifier and Type | Method and Description |
---|---|
boolean |
equals(Object o)
Compares this triple to another object.
|
Value |
getObject()
Gets the object of this triple.
|
IRI |
getPredicate()
Gets the predicate of this triple.
|
Resource |
getSubject()
Gets the subject of this triple.
|
int |
hashCode()
Computes the hash code of this triple.
|
String |
stringValue()
Returns the String-value of a Value object.
|
String |
toString() |
protected SimpleTriple(Resource subject, IRI predicate, Value object)
Note that creating SimpleStatement objects directly via this constructor is not the recommended approach.
Instead, use an instance of ValueFactory
to create new Triple objects.
subject
- The triple's subject, must not be null.predicate
- The triple's predicate, must not be null.object
- The triple's object, must not be null.SimpleValueFactory#createTriple(Resource, IRI, Value)
public Resource getSubject()
Triple
getSubject
in interface Triple
public IRI getPredicate()
Triple
getPredicate
in interface Triple
public Value getObject()
Triple
public String stringValue()
Value
Literal
's label, a
IRI
's URI or a BNode
's ID.stringValue
in interface Value
public boolean equals(Object o)
Triple
public int hashCode()
Triple
hashCode
in interface Triple
hashCode
in class Object
Objects.hash
(
Triple.getSubject()
, Triple.getPredicate()
, Triple.getObject()
)Copyright © 2015-2020 Eclipse Foundation. All Rights Reserved.