public enum ExchangePattern extends Enum<ExchangePattern>
| Enum Constant and Description |
|---|
IN_ONLY |
IN_OPTIONAL_OUT |
IN_OUT |
ROBUST_IN_ONLY |
UNKNOWN |
| Modifier and Type | Method and Description |
|---|---|
URI |
getURI() |
String |
toString() |
static ExchangePattern |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExchangePattern |
valueOf(URI pattern) |
static ExchangePattern[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExchangePattern IN_ONLY
public static final ExchangePattern IN_OUT
public static final ExchangePattern ROBUST_IN_ONLY
public static final ExchangePattern IN_OPTIONAL_OUT
public static final ExchangePattern UNKNOWN
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 toString()
toString in class Enum<ExchangePattern>public URI getURI()
public static ExchangePattern valueOf(URI pattern)
Copyright © 2011-2016 OpenESB Community. All Rights Reserved.