|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<ExchangePattern>
org.apache.camel.ExchangePattern
public enum ExchangePattern
Represents the kind of message exchange pattern
Enum Constant Summary | |
---|---|
InOnly
|
|
InOptionalOut
|
|
InOut
|
|
OutIn
|
|
OutOnly
|
|
OutOptionalIn
|
|
RobustInOnly
|
|
RobustOutOnly
|
Field Summary | |
---|---|
protected static Map<String,ExchangePattern> |
MAP
|
Method Summary | |
---|---|
static ExchangePattern |
asEnum(String value)
|
static ExchangePattern |
fromWsdlUri(String wsdlUri)
Converts the WSDL URI into a ExchangePattern instance |
String |
getWsdlUri()
Returns the WSDL URI for this message exchange pattern |
boolean |
isFaultCapable()
Return true if there can be a FAULT message |
boolean |
isInCapable()
Return true if there can be an IN message |
boolean |
isOutCapable()
Return true if there can be an OUT message |
static ExchangePattern |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static ExchangePattern[] |
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 ExchangePattern InOnly
public static final ExchangePattern RobustInOnly
public static final ExchangePattern InOut
public static final ExchangePattern InOptionalOut
public static final ExchangePattern OutOnly
public static final ExchangePattern RobustOutOnly
public static final ExchangePattern OutIn
public static final ExchangePattern OutOptionalIn
Field Detail |
---|
protected static final Map<String,ExchangePattern> MAP
Method Detail |
---|
public static final ExchangePattern[] values()
for(ExchangePattern c : ExchangePattern.values()) System.out.println(c);
public static ExchangePattern valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified namepublic String getWsdlUri()
public boolean isInCapable()
public boolean isOutCapable()
public boolean isFaultCapable()
public static ExchangePattern fromWsdlUri(String wsdlUri)
ExchangePattern
instance
public static ExchangePattern asEnum(String value)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |