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 CDTValueCDTFactory.createValue(List<CDTValue> l) static CDTValueCDTFactory.createValue(Map<CDTKey, CDTValue> m) static CDTValueCDTFactory.createValue(org.apache.jena.graph.Node n) static CDTValueCDTFactory.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 CDTValueCDTFactory.createValue(List<CDTValue> l) static CDTValueCDTFactory.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 voidCDTLiteralParser.ListElement(List<CDTValue> l) final voidfinal voidCDTLiteralParser.NonEmptyListContent(List<CDTValue> l) final voidCDTLiteralParser.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.NodeCDTLiteralFunctionUtils.createNode(List<CDTValue> list) Creates aNodewith a cdt:List literal that represents the given list.static final org.apache.jena.graph.NodeCDTLiteralFunctionUtils.createNode(Map<CDTKey, CDTValue> map) Creates aNodewith a cdt:Map literal that represents the given map.static final NodeValueCDTLiteralFunctionUtils.createNodeValue(List<CDTValue> list) Creates aNodeValuewith a cdt:List literal that represents the given list.static final NodeValueCDTLiteralFunctionUtils.createNodeValue(Map<CDTKey, CDTValue> map) Creates aNodeValuewith a cdt:Map literal that represents the given map.