- java.lang.Object
- 
- java.lang.Enum<XPathEvaluationResult.XPathResultType>
- 
- javax.xml.xpath.XPathEvaluationResult.XPathResultType
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<XPathEvaluationResult.XPathResultType>
 - Enclosing interface:
- XPathEvaluationResult<T>
 
 public static enum XPathEvaluationResult.XPathResultType extends Enum<XPathEvaluationResult.XPathResultType> XPathResultType represents possible return types of an XPath evaluation. Provided as an enum type, it allows the use of switch statement. At the same time, a mapping is provided between the original QName types inXPathConstantsand class types used in the generic methods.
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description ANYAny type that represents any of the 5 other types listed below.BOOLEANThe XPath 1.0 boolean data type.NODEThe XPath 1.0 NodeSet data type.NODESETThe XPath 1.0 NodeSet data type.NUMBERThe XPath 1.0 Number data type.STRINGThe XPath 1.0 String data type.
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static QNamegetQNameType(Class<?> clsType)Returns the QName type as specified inXPathConstantsthat corresponds to the specified class type.static XPathEvaluationResult.XPathResultTypevalueOf(String name)Returns the enum constant of this type with the specified name.static XPathEvaluationResult.XPathResultType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
ANYpublic static final XPathEvaluationResult.XPathResultType ANY Any type that represents any of the 5 other types listed below. Maps toXPathEvaluationResult.
 - 
BOOLEANpublic static final XPathEvaluationResult.XPathResultType BOOLEAN The XPath 1.0 boolean data type. Maps to JavaBoolean.
 - 
NUMBERpublic static final XPathEvaluationResult.XPathResultType NUMBER The XPath 1.0 Number data type. Maps to JavaNumber. Of the subtypes of Number, only Double, Integer and Long are required.
 - 
STRINGpublic static final XPathEvaluationResult.XPathResultType STRING The XPath 1.0 String data type. Maps to JavaString.
 - 
NODESETpublic static final XPathEvaluationResult.XPathResultType NODESET The XPath 1.0 NodeSet data type. Maps toNodeList.
 - 
NODEpublic static final XPathEvaluationResult.XPathResultType NODE The XPath 1.0 NodeSet data type. Maps toNode.
 
- 
 - 
Method Detail- 
valuespublic static XPathEvaluationResult.XPathResultType[] 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 (XPathEvaluationResult.XPathResultType c : XPathEvaluationResult.XPathResultType.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static XPathEvaluationResult.XPathResultType 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
 
 - 
getQNameTypepublic static QName getQNameType(Class<?> clsType) Returns the QName type as specified inXPathConstantsthat corresponds to the specified class type.- Parameters:
- clsType- a class type that the enum type supports
- Returns:
- the QName type that matches with the specified class type, null if there is no match
 
 
- 
 
-