public static enum GroupListener.GroupEvent extends Enum<GroupListener.GroupEvent>
Enum Constant and Description |
---|
CHANGED |
CONNECTED |
DISCONNECTED |
Modifier and Type | Method and Description |
---|---|
static GroupListener.GroupEvent |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GroupListener.GroupEvent[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GroupListener.GroupEvent CONNECTED
public static final GroupListener.GroupEvent CHANGED
public static final GroupListener.GroupEvent DISCONNECTED
public static GroupListener.GroupEvent[] values()
for (GroupListener.GroupEvent c : GroupListener.GroupEvent.values()) System.out.println(c);
public static GroupListener.GroupEvent 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 nullApache Camel