public static enum TransportEndPoint.MessagePatternEnum extends Enum<TransportEndPoint.MessagePatternEnum>
| Enum Constant and Description |
|---|
ASYNCHRONOUS |
ONE_WAY |
SYNCHRONOUS |
| Modifier and Type | Method and Description |
|---|---|
static TransportEndPoint.MessagePatternEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TransportEndPoint.MessagePatternEnum[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final TransportEndPoint.MessagePatternEnum ONE_WAY
public static final TransportEndPoint.MessagePatternEnum SYNCHRONOUS
public static final TransportEndPoint.MessagePatternEnum ASYNCHRONOUS
public static TransportEndPoint.MessagePatternEnum[] values()
for (TransportEndPoint.MessagePatternEnum c : TransportEndPoint.MessagePatternEnum.values())
System.out.println(c);
public static TransportEndPoint.MessagePatternEnum 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 null