Package org.exist.xquery.value

Examples of org.exist.xquery.value.NodeValue.atomize()


                                    if (value instanceof ReferenceNode)
                                        {value = ((ReferenceNode) value).getReference();}
                                }
                                final String type = elem.getAttribute("type");
        if (type != null && Type.subTypeOf(Type.getType(type), Type.ATOMIC)) {
          innerContext.declareVariable(qname, value.atomize().convertTo(Type.getType(type)));
        } else {
          innerContext.declareVariable(qname, value);
        }
      } else if (child.getNodeType() == Node.ELEMENT_NODE &&  "output-size-limit".equals(child.getLocalName())) {
        final Element elem = (Element) child;
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.