Package org.apache.commons.rdf.api
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 BlankNode
Deprecated.default BlankNode
createBlankNode
(String name) Deprecated.default Graph
Deprecated.default IRI
Deprecated.default Literal
createLiteral
(String lexicalForm) Deprecated.default Literal
createLiteral
(String lexicalForm, String languageTag) Deprecated.default Literal
createLiteral
(String lexicalForm, IRI dataType) Deprecated.default Triple
createTriple
(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.
-