public enum BusEventType extends Enum<BusEventType>
Enum Constant and Description |
---|
ASSOCIATING |
DISASSOCIATING |
OFFLINE |
ONLINE |
Modifier and Type | Method and Description |
---|---|
abstract void |
deliverTo(BusLifecycleListener l,
BusLifecycleEvent e) |
static BusEventType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BusEventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BusEventType ASSOCIATING
public static final BusEventType DISASSOCIATING
public static final BusEventType ONLINE
public static final BusEventType OFFLINE
public static BusEventType[] values()
for (BusEventType c : BusEventType.values()) System.out.println(c);
public static BusEventType 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 abstract void deliverTo(BusLifecycleListener l, BusLifecycleEvent e)
Copyright © 2013-2015 JBoss, a division of Red Hat. All Rights Reserved.