Package org.eclipse.rdf4j.model.base
Class AbstractTriple.GenericTriple
- java.lang.Object
-
- org.eclipse.rdf4j.model.base.AbstractTriple
-
- org.eclipse.rdf4j.model.base.AbstractTriple.GenericTriple
-
- Enclosing class:
- AbstractTriple
static class AbstractTriple.GenericTriple extends AbstractTriple
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.eclipse.rdf4j.model.base.AbstractTriple
AbstractTriple.GenericTriple
-
-
Constructor Summary
Constructors Constructor Description GenericTriple(Resource subject, IRI predicate, Value object)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ValuegetObject()Gets the object of this triple.IRIgetPredicate()Gets the predicate of this triple.ResourcegetSubject()Gets the subject of this triple.-
Methods inherited from class org.eclipse.rdf4j.model.base.AbstractTriple
equals, hashCode, stringValue, toString
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.eclipse.rdf4j.model.Resource
isResource
-
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
subject
private final Resource subject
-
predicate
private final IRI predicate
-
object
private final Value object
-
-
Method Detail
-
getSubject
public Resource getSubject()
Description copied from interface:TripleGets the subject of this triple.- Returns:
- The triple's subject.
-
getPredicate
public IRI getPredicate()
Description copied from interface:TripleGets the predicate of this triple.- Returns:
- The triple's predicate.
-
-