org.mule.construct
Enum SimpleService.Type
java.lang.Object
java.lang.Enum<SimpleService.Type>
org.mule.construct.SimpleService.Type
- All Implemented Interfaces:
- Serializable, Comparable<SimpleService.Type>
- Enclosing class:
- SimpleService
public static enum SimpleService.Type
- extends Enum<SimpleService.Type>
|
Enum Constant Summary |
DEFAULT
Pass the inbound messages unaltered to the component. |
JAX_WS
Expose a JAX-WS annoted component as a web service. |
JAX_WS
public static final SimpleService.Type JAX_WS
- Expose a JAX-WS annoted component as a web service. CXF is required to
have this working.
DEFAULT
public static final SimpleService.Type DEFAULT
- Pass the inbound messages unaltered to the component.
values
public static SimpleService.Type[] 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 (SimpleService.Type c : SimpleService.Type.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static SimpleService.Type 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 name
NullPointerException - if the argument is null
fromString
public static SimpleService.Type fromString(String string)
Copyright © 2003-2010 MuleSoft, Inc.. All Rights Reserved.