net.sf.xenqtt.mockbroker
Enum BrokerEventType

java.lang.Object
  extended by java.lang.Enum<BrokerEventType>
      extended by net.sf.xenqtt.mockbroker.BrokerEventType
All Implemented Interfaces:
Serializable, Comparable<BrokerEventType>

public enum BrokerEventType
extends 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

MESSAGE_SENT

public static final BrokerEventType MESSAGE_SENT
An MqttMessage queued for sending from the broker to a client


MESSAGE_RECEIVED

public static final BrokerEventType MESSAGE_RECEIVED
An MqttMessage was received by the broker from the client


CHANNEL_OPENED

public static final BrokerEventType CHANNEL_OPENED
A socket was opened on the broker from the client (a new client connected).


CHANNEL_CLOSED

public static final BrokerEventType CHANNEL_CLOSED
The broker's socket to the client was closed.

Method Detail

values

public static BrokerEventType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (BrokerEventType c : BrokerEventType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static BrokerEventType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null


Copyright © 2013. All Rights Reserved.