Package no.hasmac.rdf
Interface RdfResource
-
- All Superinterfaces:
RdfValue
- All Known Implementing Classes:
RdfResourceImpl
public interface RdfResource extends RdfValue
An immutable RDF statement's value. Represents an absolute IRI or blank node identifier.
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default RdfLiteral
asLiteral()
Return the RdfValue as a RdfLiteraldefault boolean
isLiteral()
Indicates if the value type is RDF literal.
-
-
-
Method Detail
-
isLiteral
default boolean isLiteral()
Description copied from interface:RdfValue
Indicates if the value type is RDF literal.
-
asLiteral
default RdfLiteral asLiteral()
Description copied from interface:RdfValue
Return the RdfValue as a RdfLiteral
-
-