public enum PubSubType extends Enum<PubSubType>
| Enum Constant and Description |
|---|
CONNECT |
DISCONNECT |
DISPATCH |
JOIN |
LEAVE |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static PubSubType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PubSubType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PubSubType CONNECT
public static final PubSubType DISCONNECT
public static final PubSubType JOIN
public static final PubSubType LEAVE
public static final PubSubType DISPATCH
public static PubSubType[] values()
for (PubSubType c : PubSubType.values()) System.out.println(c);
public static PubSubType 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 String toString()
toString in class Enum<PubSubType>Copyright © 2012–2016. All rights reserved.