Package org.apache.synapse.util.jaxp
Enum ResultBuilderFactory.Output
- java.lang.Object
-
- java.lang.Enum<ResultBuilderFactory.Output>
-
- org.apache.synapse.util.jaxp.ResultBuilderFactory.Output
-
- All Implemented Interfaces:
Serializable
,Comparable<ResultBuilderFactory.Output>
- Enclosing interface:
- ResultBuilderFactory
public static enum ResultBuilderFactory.Output extends Enum<ResultBuilderFactory.Output>
Enumeration defining the output type to be expected byResultBuilder
. This influences the exact behavior ofResultBuilder.getNode(java.nio.charset.Charset)
.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ELEMENT
The expected output is a simpleOMElement
.SOAP_ENVELOPE
The expected output is a SOAP envelope.TEXT
The expected output is text.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method 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.
-
-
-
Enum Constant Detail
-
ELEMENT
public static final ResultBuilderFactory.Output ELEMENT
The expected output is a simpleOMElement
. In this case, the return value ofResultBuilder.getNode(java.nio.charset.Charset)
will be the root element of the AXIOM tree representing the XML infoset written to theResult
object.
-
SOAP_ENVELOPE
public static final ResultBuilderFactory.Output SOAP_ENVELOPE
The expected output is a SOAP envelope. If this output type is used, an invocation ofResultBuilder#getNode()
must return aSOAPEnvelope
object.
-
TEXT
public static final ResultBuilderFactory.Output TEXT
The expected output is text. If this output type is used,ResultBuilder.getNode(java.nio.charset.Charset)
must return a text wrapper with the output written to theResult
object.
-
-
Method Detail
-
values
public static ResultBuilderFactory.Output[] 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 (ResultBuilderFactory.Output c : ResultBuilderFactory.Output.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ResultBuilderFactory.Output 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 nameNullPointerException
- if the argument is null
-
-