Enum XPathVersion
- java.lang.Object
-
- java.lang.Enum<XPathVersion>
-
- net.sourceforge.pmd.lang.rule.xpath.XPathVersion
-
- All Implemented Interfaces:
Serializable
,Comparable<XPathVersion>
public enum XPathVersion extends Enum<XPathVersion>
Constants for XPath language version used in XPath queries.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description XPATH_3_1
XPath 3.1.
-
Field Summary
Fields Modifier and Type Field Description static XPathVersion
DEFAULT
The default XPath version for XPath queries.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getXmlName()
Returns the string used to represent the version in the XML.static XPathVersion
ofId(String version)
Gets an XPath version from the string used to represent it in the XML.String
toString()
static XPathVersion
valueOf(String name)
Returns the enum constant of this type with the specified name.static XPathVersion[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
XPATH_3_1
public static final XPathVersion XPATH_3_1
XPath 3.1.
-
-
Field Detail
-
DEFAULT
public static final XPathVersion DEFAULT
The default XPath version for XPath queries.
-
-
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 nameNullPointerException
- if the argument is null
-
getXmlName
public String getXmlName()
Returns the string used to represent the version in the XML.- Returns:
- A string representation
-
toString
public String toString()
- Overrides:
toString
in classEnum<XPathVersion>
-
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
-
-