public static enum TransportEndPoint.MessagePatternEnum extends java.lang.Enum<TransportEndPoint.MessagePatternEnum>
| Enum Constant and Description |
|---|
ASYNCHRONOUS |
ONE_WAY |
SYNCHRONOUS |
| Modifier and Type | Method and Description |
|---|---|
static TransportEndPoint.MessagePatternEnum |
valueOf(java.lang.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(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null