Uses of Class
org.apache.jena.cdt.CDTValue
Package
Description
-
Uses of CDTValue in org.apache.jena.cdt
Modifier 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()
Modifier 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) Modifier 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
Modifier 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
Modifier 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.Modifier 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.