public enum ExchangePattern extends Enum<ExchangePattern>
Enum Constant and Description |
---|
InOnly |
InOptionalOut |
InOut |
OutIn |
OutOnly |
OutOptionalIn |
RobustInOnly |
RobustOutOnly |
Modifier and Type | Field and Description |
---|---|
protected static Map<String,ExchangePattern> |
MAP |
Modifier and Type | Method and Description |
---|---|
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 are declared.
|
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
protected static final Map<String,ExchangePattern> MAP
public static 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 nameNullPointerException
- if the argument is nullpublic String getWsdlUri()
public boolean isInCapable()
public boolean isOutCapable()
public boolean isFaultCapable()
public static ExchangePattern fromWsdlUri(String wsdlUri)
ExchangePattern
instancepublic static ExchangePattern asEnum(String value)
Apache Camel