|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<BrokerEventType>
net.sf.xenqtt.mockbroker.BrokerEventType
public enum BrokerEventType
Type of event for BrokerEvent
.
Enum Constant Summary | |
---|---|
CHANNEL_CLOSED
The broker's socket to the client was closed. |
|
CHANNEL_OPENED
A socket was opened on the broker from the client (a new client connected). |
|
MESSAGE_RECEIVED
An MqttMessage was received by the broker from the client |
|
MESSAGE_SENT
An MqttMessage queued for sending from the broker to a client |
Method Summary | |
---|---|
static BrokerEventType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static BrokerEventType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, 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 BrokerEventType MESSAGE_SENT
MqttMessage
queued for sending from the broker to a client
public static final BrokerEventType MESSAGE_RECEIVED
MqttMessage
was received by the broker from the client
public static final BrokerEventType CHANNEL_OPENED
public static final BrokerEventType CHANNEL_CLOSED
Method Detail |
---|
public static BrokerEventType[] values()
for (BrokerEventType c : BrokerEventType.values()) System.out.println(c);
public static BrokerEventType 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 |