public enum BusSyncReply extends java.lang.Enum<BusSyncReply> implements IntegerEnum
| Enum Constant and Description |
|---|
ASYNC
Pass
Message to async queue, continue if message is handled |
DROP
Drop the
Message |
PASS
Pass the
Message to the async queue |
UNKNOWN
Unknown reply value
|
| Modifier and Type | Method and Description |
|---|---|
int |
intValue()
Gets the integer value of the enum.
|
static BusSyncReply |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BusSyncReply[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BusSyncReply DROP
Messagepublic static final BusSyncReply PASS
Message to the async queuepublic static final BusSyncReply ASYNC
Message to async queue, continue if message is handledpublic static final BusSyncReply UNKNOWN
public static BusSyncReply[] values()
for (BusSyncReply c : BusSyncReply.values()) System.out.println(c);
public static BusSyncReply 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 int intValue()
intValue in interface IntegerEnum