Enum XPathVersion

    • Enum Constant Detail

      • XPATH_1_0

        @Deprecated
        public static final XPathVersion XPATH_1_0
        Deprecated.
        Will become unsupported in 7.0.0
        XPath 1.0.
      • XPATH_1_0_COMPATIBILITY

        @Deprecated
        public static final XPathVersion XPATH_1_0_COMPATIBILITY
        Deprecated.
        Will become unsupported in 7.0.0
        XPath 1.0 compatibility mode.
      • XPATH_2_0

        public static final XPathVersion XPATH_2_0
        XPath 2.0.
    • Method Detail

      • values

        public static XPathVersion[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (XPathVersion c : XPathVersion.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static XPathVersion valueOf​(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null
      • getXmlName

        public String getXmlName()
        Returns the string used to represent the version in the XML.
        Returns:
        A string representation
      • ofId

        public static XPathVersion ofId​(String version)
        Gets an XPath version from the string used to represent it in the XML.
        Parameters:
        version - A version string
        Returns:
        An XPath version, or null if the argument is not a valid version