public static enum XQueryEndpointBuilderFactory.ResultFormat extends Enum<XQueryEndpointBuilderFactory.ResultFormat>
org.apache.camel.component.xquery.ResultFormat enum.| Enum Constant and Description |
|---|
Bytes |
BytesSource |
DOM |
DOMSource |
List |
String |
StringSource |
| Modifier and Type | Method and Description |
|---|---|
static XQueryEndpointBuilderFactory.ResultFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static XQueryEndpointBuilderFactory.ResultFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XQueryEndpointBuilderFactory.ResultFormat Bytes
public static final XQueryEndpointBuilderFactory.ResultFormat BytesSource
public static final XQueryEndpointBuilderFactory.ResultFormat DOM
public static final XQueryEndpointBuilderFactory.ResultFormat DOMSource
public static final XQueryEndpointBuilderFactory.ResultFormat List
public static final XQueryEndpointBuilderFactory.ResultFormat String
public static final XQueryEndpointBuilderFactory.ResultFormat StringSource
public static XQueryEndpointBuilderFactory.ResultFormat[] values()
for (XQueryEndpointBuilderFactory.ResultFormat c : XQueryEndpointBuilderFactory.ResultFormat.values()) System.out.println(c);
public static XQueryEndpointBuilderFactory.ResultFormat 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 nullApache Camel