public enum EnumCommunicationMode extends java.lang.Enum<EnumCommunicationMode>
| Enum Constant and Description |
|---|
BOUNDED_ASYNCHRONOUS
The Full Asynchronous Mode.
|
SYNCHRONOUS
The Synchronous Mode.
|
UNBOUNDED_ASYNCHRONOUS
The Full Asynchronous Mode.
|
| Modifier and Type | Method and Description |
|---|---|
short |
getValue()
This function returns the short value of this enum.
|
static EnumCommunicationMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumCommunicationMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumCommunicationMode UNBOUNDED_ASYNCHRONOUS
public static final EnumCommunicationMode BOUNDED_ASYNCHRONOUS
public static final EnumCommunicationMode SYNCHRONOUS
public static EnumCommunicationMode[] values()
for (EnumCommunicationMode c : EnumCommunicationMode.values()) System.out.println(c);
public static EnumCommunicationMode 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 nullpublic short getValue()