public enum GlobalEvent extends Enum<GlobalEvent>
| Enum Constant and Description |
|---|
ASSOCIATION_UP |
CHANGE_RATE |
RATE_CHANGED |
START |
STOP |
TRAFFIC_TIMER |
| Modifier and Type | Method and Description |
|---|---|
static GlobalEvent |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GlobalEvent[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GlobalEvent START
public static final GlobalEvent STOP
public static final GlobalEvent CHANGE_RATE
public static final GlobalEvent ASSOCIATION_UP
public static final GlobalEvent TRAFFIC_TIMER
public static final GlobalEvent RATE_CHANGED
public static GlobalEvent[] values()
for (GlobalEvent c : GlobalEvent.values()) System.out.println(c);
public static GlobalEvent 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 nullCopyright © 2017. All Rights Reserved.