Interface RDFTermFactory
- All Known Implementing Classes:
SimpleRDFTermFactory
Deprecated.
Factory for creating RDFTerm instances..
This interface is deprecated in favour of the richer
RDF.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptiondefault BlankNodeDeprecated.default BlankNodecreateBlankNode(String name) Deprecated.default GraphDeprecated.default IRIDeprecated.default LiteralcreateLiteral(String lexicalForm) Deprecated.default LiteralcreateLiteral(String lexicalForm, String languageTag) Deprecated.default LiteralcreateLiteral(String lexicalForm, IRI dataType) Deprecated.default TriplecreateTriple(BlankNodeOrIRI subject, IRI predicate, RDFTerm object) Deprecated.
-
Method Details
-
createBlankNode
Deprecated.- Throws:
UnsupportedOperationException
-
createBlankNode
Deprecated.- Throws:
UnsupportedOperationException
-
createGraph
Deprecated.- Throws:
UnsupportedOperationException
-
createIRI
Deprecated. -
createLiteral
default Literal createLiteral(String lexicalForm) throws IllegalArgumentException, UnsupportedOperationException Deprecated. -
createLiteral
default Literal createLiteral(String lexicalForm, IRI dataType) throws IllegalArgumentException, UnsupportedOperationException Deprecated. -
createLiteral
default Literal createLiteral(String lexicalForm, String languageTag) throws IllegalArgumentException, UnsupportedOperationException Deprecated. -
createTriple
default Triple createTriple(BlankNodeOrIRI subject, IRI predicate, RDFTerm object) throws IllegalArgumentException, UnsupportedOperationException Deprecated.
-