|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<ResultBuilderFactory.Output>
org.apache.synapse.util.jaxp.ResultBuilderFactory.Output
public static enum ResultBuilderFactory.Output
Enumeration defining the output type to be expected by ResultBuilder.
This influences the exact behavior of
ResultBuilder.getNode(java.nio.charset.Charset).
| Enum Constant Summary | |
|---|---|
ELEMENT
The expected output is a simple OMElement. |
|
SOAP_ENVELOPE
The expected output is a SOAP envelope. |
|
TEXT
The expected output is text. |
|
| Method Summary | |
|---|---|
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're declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
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.
| Method Detail |
|---|
public static final 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 name
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||