|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<AepEngine.MessageHandlingPolicy>
com.neeve.aep.AepEngine.MessageHandlingPolicy
public static enum AepEngine.MessageHandlingPolicy
Enumerates an engine's inbound message handling policy
Enum Constant Summary | |
---|---|
Discard
This policy causes inbound messages to be blindly discarded. |
|
Noop
This policy causes inbound messages to be discarded before dispatch to the application i.e. they are not dispatched to the application. |
|
Normal
This policy represents normal message processing operation. |
Method Summary | |
---|---|
static AepEngine.MessageHandlingPolicy |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static AepEngine.MessageHandlingPolicy[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final AepEngine.MessageHandlingPolicy Discard
public static final AepEngine.MessageHandlingPolicy Noop
public static final AepEngine.MessageHandlingPolicy Normal
This is the default message handling policy
Method Detail |
---|
public static AepEngine.MessageHandlingPolicy[] values()
for (AepEngine.MessageHandlingPolicy c : AepEngine.MessageHandlingPolicy.values()) System.out.println(c);
public static AepEngine.MessageHandlingPolicy valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |