public enum EventTypes extends Enum<EventTypes>
| Enum Constant and Description |
|---|
CEA_EVENT
Stack received CEA message
|
CER_EVENT
Stack received CER message
|
CONNECT_EVENT
Connect event
|
DISCONNECT_EVENT
Disconnect event
|
DPA_EVENT
Stack received DPA message
|
DPR_EVENT
Stack received DPR message
|
DWA_EVENT
Stack received DWA message
|
DWR_EVENT
Stack received DWR message
|
INTERNAL_ERROR
Internal error during processing event
|
RECEIVE_MSG_EVENT
Stack received Application message
|
SEND_MSG_EVENT
App send message to network
|
START_EVENT
Start fsm event
|
STOP_EVENT
Stop fsm event
|
TIMEOUT_EVENT
Operation timeout event
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
isHighPriority() |
static EventTypes |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EventTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EventTypes CONNECT_EVENT
public static final EventTypes DISCONNECT_EVENT
public static final EventTypes TIMEOUT_EVENT
public static final EventTypes START_EVENT
public static final EventTypes STOP_EVENT
public static final EventTypes INTERNAL_ERROR
public static final EventTypes CER_EVENT
public static final EventTypes CEA_EVENT
public static final EventTypes DPR_EVENT
public static final EventTypes DPA_EVENT
public static final EventTypes DWR_EVENT
public static final EventTypes DWA_EVENT
public static final EventTypes SEND_MSG_EVENT
public static final EventTypes RECEIVE_MSG_EVENT
public static EventTypes[] values()
for (EventTypes c : EventTypes.values()) System.out.println(c);
public static EventTypes 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 nullpublic boolean isHighPriority()
Copyright © 2016. All Rights Reserved.