public enum IPCEventType extends Enum<IPCEventType>
| Enum Constant and Description |
|---|
EVENT_REQUEUE
Event requeue
|
EXCEPTION
Exception
|
HANDLER_USED
Handler used
|
INTERNAL_EVENT
Internal event
|
MESSAGE_PROCESSED
Message processed
|
MESSAGE_RECIEVED
Message recieved
|
MESSAGE_SENT
Message sent
|
TOTAL_EVENTS
An event is received
|
| Modifier and Type | Method and Description |
|---|---|
static IPCEventType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IPCEventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IPCEventType TOTAL_EVENTS
public static final IPCEventType INTERNAL_EVENT
public static final IPCEventType EVENT_REQUEUE
public static final IPCEventType HANDLER_USED
public static final IPCEventType EXCEPTION
public static final IPCEventType MESSAGE_SENT
public static final IPCEventType MESSAGE_RECIEVED
public static final IPCEventType MESSAGE_PROCESSED
public static IPCEventType[] values()
for (IPCEventType c : IPCEventType.values()) System.out.println(c);
public static IPCEventType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2016. All rights reserved.