public enum XPathReturnType extends Enum<XPathReturnType>
toQName()
method allows correlating each value
to the standard QName
which can be used in the JAXP API.Enum Constant and Description |
---|
BOOLEAN |
NODE |
NODESET |
NUMBER |
STRING |
Modifier and Type | Method and Description |
---|---|
protected abstract QName |
toQName()
Returns the
QName related to each value |
static XPathReturnType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static XPathReturnType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XPathReturnType BOOLEAN
public static final XPathReturnType NUMBER
public static final XPathReturnType STRING
public static final XPathReturnType NODESET
public static final XPathReturnType NODE
public static XPathReturnType[] values()
for (XPathReturnType c : XPathReturnType.values()) System.out.println(c);
public static XPathReturnType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2003–2016 MuleSoft, Inc.. All rights reserved.