public static enum InternalRouteEvent.Type extends Enum<InternalRouteEvent.Type>
| Enum Constant and Description |
|---|
ROUTE_ADDED
Indicates a route was added to the store.
|
ROUTE_REMOVED
Indicates a route was removed from the store.
|
| Modifier and Type | Method and Description |
|---|---|
static InternalRouteEvent.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InternalRouteEvent.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InternalRouteEvent.Type ROUTE_ADDED
public static final InternalRouteEvent.Type ROUTE_REMOVED
public static InternalRouteEvent.Type[] values()
for (InternalRouteEvent.Type c : InternalRouteEvent.Type.values()) System.out.println(c);
public static InternalRouteEvent.Type 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 null