public static enum WaypointGroupEvent.Context extends java.lang.Enum<WaypointGroupEvent.Context>
| Enum Constant and Description |
|---|
CREATE
Fired when a new waypoint group is created.
|
DELETED
Fired when a waypoint group is deleted.
|
READ
Fired when a waypoint group.
|
UPDATE
Fired when an existing waypoint group is updated.
|
| Modifier and Type | Method and Description |
|---|---|
static WaypointGroupEvent.Context |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static WaypointGroupEvent.Context[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WaypointGroupEvent.Context CREATE
public static final WaypointGroupEvent.Context UPDATE
public static final WaypointGroupEvent.Context DELETED
public static final WaypointGroupEvent.Context READ
This will happen periodically as the waypoint group cache gets refreshed on dimension change, modifying some options, and at world join.
public static WaypointGroupEvent.Context[] values()
for (WaypointGroupEvent.Context c : WaypointGroupEvent.Context.values()) System.out.println(c);
public static WaypointGroupEvent.Context valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null