Package no.hasmac.rdf
Interface RdfTriple
-
- All Known Subinterfaces:
RdfNQuad
- All Known Implementing Classes:
RdfNQuadImpl
,RdfTripleImpl
public interface RdfTriple
TheRdfTriple
interface describes an immutable RDF triple.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RdfValue
getObject()
An absolute IRI or blank node identifier orRdfLiteral
.RdfResource
getPredicate()
An absolute IRI or blank node identifier denoting the predicate of the triple.RdfResource
getSubject()
An absolute IRI or blank node identifier denoting the subject of the triple.
-
-
-
Method Detail
-
getSubject
RdfResource getSubject()
An absolute IRI or blank node identifier denoting the subject of the triple.- Returns:
- an absolute URI or blank node
-
getPredicate
RdfResource getPredicate()
An absolute IRI or blank node identifier denoting the predicate of the triple.- Returns:
- an absolute URI or blank node
-
getObject
RdfValue getObject()
An absolute IRI or blank node identifier orRdfLiteral
.- Returns:
RdfValue
-
-