public enum EndpointType extends java.lang.Enum<EndpointType>
endpoints| Enum Constant and Description |
|---|
RECEIVER
The
MessageEndpoint IS-A MessageReceiverEndpoint |
SENDER
The
MessageEndpoint IS-A MessageSenderEndpoint |
| Modifier and Type | Method and Description |
|---|---|
static EndpointType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EndpointType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EndpointType SENDER
MessageEndpoint IS-A MessageSenderEndpointpublic static final EndpointType RECEIVER
MessageEndpoint IS-A MessageReceiverEndpointpublic static EndpointType[] values()
for (EndpointType c : EndpointType.values()) System.out.println(c);
public static EndpointType 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