Class FragmentValue

  • All Implemented Interfaces:
    NodeList

    public final class FragmentValue
    extends SingletonNodeSet
    This class represents a Value of type result tree fragment.
    A Result Tree Fragment can be created by defining a variable in XSL whose value is defined by the contents of the xsl:variable element, possibly including start and end element tags.
    • Constructor Detail

      • FragmentValue

        public FragmentValue​(Controller c)
    • Method Detail

      • setBaseURI

        public void setBaseURI​(String uri)
        Set the Base URI for the nodes in the result tree fragment. This is defined to be the Base URI of the relevant xsl:variable element in the stylesheet.
      • getEmitter

        public Emitter getEmitter()
        Get an Emitter that can be used to feed data to this result tree fragment
      • asString

        public String asString()
        Convert the result tree fragment to a string.
        Overrides:
        asString in class SingletonNodeSet
        Returns:
        the value of the first node in the node-set if there is one, otherwise an empty string
      • asNumber

        public double asNumber()
        Convert the result tree fragment to a number
        Overrides:
        asNumber in class NodeSetValue
        Returns:
        the number obtained by evaluating as a String and converting the string to a number
      • asBoolean

        public boolean asBoolean()
        Convert the result tree fragment to a boolean
        Overrides:
        asBoolean in class SingletonNodeSet
        Returns:
        true if the node set is not empty
      • getFirst

        public NodeInfo getFirst()
        Get the first node in the nodeset (in document order)
        Overrides:
        getFirst in class SingletonNodeSet
        Returns:
        the first node
      • compare

        public boolean compare​(int operator,
                               Value other)
                        throws XPathException
        Test how a FragmentValue compares to another Value under a relational comparison.
        Overrides:
        compare in class NodeSetValue
        Parameters:
        operator - The comparison operator, one of Tokenizer.LE, Tokenizer.LT, Tokenizer.GE, Tokenizer.GT,
        Throws:
        XPathException
      • getType

        public int getType()
        Return the type of the value
        Returns:
        Value.NODESET (always)
      • getDataType

        public int getDataType()
        Determine the data type of the expression, if possible
        Overrides:
        getDataType in class NodeSetValue
        Returns:
        Value.NODESET
      • getRootNode

        public DocumentInfo getRootNode()
        Get the root (document) node
      • display

        public void display​(int level)
        Diagnostic print of expression structure
        Overrides:
        display in class NodeSetValue