public static enum ResultBuilderFactory.Output extends Enum<ResultBuilderFactory.Output>
ResultBuilder.
This influences the exact behavior of
ResultBuilder.getNode(java.nio.charset.Charset).| Enum Constant and Description |
|---|
ELEMENT
The expected output is a simple
OMElement. |
SOAP_ENVELOPE
The expected output is a SOAP envelope.
|
TEXT
The expected output is text.
|
| Modifier and Type | Method and Description |
|---|---|
static ResultBuilderFactory.Output |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ResultBuilderFactory.Output[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ResultBuilderFactory.Output ELEMENT
OMElement.
In this case, the return value of
ResultBuilder.getNode(java.nio.charset.Charset) will be
the root element of the AXIOM tree representing the XML infoset written
to the Result object.public static final ResultBuilderFactory.Output SOAP_ENVELOPE
ResultBuilder#getNode()
must return a SOAPEnvelope object.public static final ResultBuilderFactory.Output TEXT
ResultBuilder.getNode(java.nio.charset.Charset) must return a
text wrapper with the output written to the Result
object.public static ResultBuilderFactory.Output[] values()
for (ResultBuilderFactory.Output c : ResultBuilderFactory.Output.values()) System.out.println(c);
public static ResultBuilderFactory.Output 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 © 2005-2017 Apache Software Foundation. All Rights Reserved.