Uses of Class
org.apache.jena.cdt.CDTValue
Packages that use CDTValue
Package
Description
-
Uses of CDTValue in org.apache.jena.cdt
Methods in org.apache.jena.cdt that return CDTValueModifier and TypeMethodDescriptionstatic CDTValue
CDTFactory.createValue
(List<CDTValue> l) static CDTValue
CDTFactory.createValue
(Map<CDTKey, CDTValue> m) static CDTValue
CDTFactory.createValue
(org.apache.jena.graph.Node n) static CDTValue
CDTFactory.getNullValue()
Methods in org.apache.jena.cdt that return types with arguments of type CDTValueModifier and TypeMethodDescriptionCompositeDatatypeList.getValue
(org.apache.jena.graph.impl.LiteralLabel lit) Assumes that the datatype of the given literal is cdt:List.CompositeDatatypeMap.getValue
(org.apache.jena.graph.impl.LiteralLabel lit) Assumes that the datatype of the given literal is cdt:Map.ParserForCDTLiterals.parseListLiteral
(Reader reader) ParserForCDTLiterals.parseListLiteral
(String lex) ParserForCDTLiterals.parseListLiteral
(ParserProfile pp, Reader reader) ParserForCDTLiterals.parseListLiteral
(ParserProfile pp, String lex) ParserForCDTLiterals.parseMapLiteral
(Reader reader) ParserForCDTLiterals.parseMapLiteral
(String lex) ParserForCDTLiterals.parseMapLiteral
(ParserProfile pp, Reader reader) ParserForCDTLiterals.parseMapLiteral
(ParserProfile pp, String lex) Methods in org.apache.jena.cdt with parameters of type CDTValueMethod parameters in org.apache.jena.cdt with type arguments of type CDTValueModifier and TypeMethodDescriptionstatic CDTValue
CDTFactory.createValue
(List<CDTValue> l) static CDTValue
CDTFactory.createValue
(Map<CDTKey, CDTValue> m) CompositeDatatypeList.unparseValue
(List<CDTValue> list) CompositeDatatypeMap.unparseValue
(Map<CDTKey, CDTValue> map) -
Uses of CDTValue in org.apache.jena.cdt.parser
Methods in org.apache.jena.cdt.parser that return CDTValueMethods in org.apache.jena.cdt.parser that return types with arguments of type CDTValueMethod parameters in org.apache.jena.cdt.parser with type arguments of type CDTValueModifier and TypeMethodDescriptionfinal void
CDTLiteralParser.ListElement
(List<CDTValue> l) final void
final void
CDTLiteralParser.NonEmptyListContent
(List<CDTValue> l) final void
CDTLiteralParser.NonEmptyMapContent
(Map<CDTKey, CDTValue> m) -
Uses of CDTValue in org.apache.jena.sparql.function.library.cdt
Methods in org.apache.jena.sparql.function.library.cdt that return types with arguments of type CDTValueModifier and TypeMethodDescriptionCDTLiteralFunctionUtils.checkAndGetList
(org.apache.jena.graph.Node n) CallsCDTLiteralFunctionUtils.ensureListLiteral(Node)
first, andCDTLiteralFunctionUtils.getList(Node)
afterwards.CDTLiteralFunctionUtils.checkAndGetList
(NodeValue nv) CDTLiteralFunctionUtils.checkAndGetMap
(org.apache.jena.graph.Node n) CallsCDTLiteralFunctionUtils.ensureMapLiteral(Node)
first, andCDTLiteralFunctionUtils.getMap(Node)
afterwards.CDTLiteralFunctionUtils.checkAndGetMap
(NodeValue nv) CDTLiteralFunctionUtils.getList
(org.apache.jena.graph.Node n) Assumes that the given node is a cdt:List literal and usesCompositeDatatypeList.getValue(LiteralLabel)
to get the list.CDTLiteralFunctionUtils.getMap
(org.apache.jena.graph.Node n) Assumes that the given node is a cdt:Map literal and usesCompositeDatatypeMap.getValue(LiteralLabel)
to get the map.Method parameters in org.apache.jena.sparql.function.library.cdt with type arguments of type CDTValueModifier and TypeMethodDescriptionstatic final org.apache.jena.graph.Node
CDTLiteralFunctionUtils.createNode
(List<CDTValue> list) Creates aNode
with a cdt:List literal that represents the given list.static final org.apache.jena.graph.Node
CDTLiteralFunctionUtils.createNode
(Map<CDTKey, CDTValue> map) Creates aNode
with a cdt:Map literal that represents the given map.static final NodeValue
CDTLiteralFunctionUtils.createNodeValue
(List<CDTValue> list) Creates aNodeValue
with a cdt:List literal that represents the given list.static final NodeValue
CDTLiteralFunctionUtils.createNodeValue
(Map<CDTKey, CDTValue> map) Creates aNodeValue
with a cdt:Map literal that represents the given map.