Enum Class WaypointGroupEvent.Context
java.lang.Object
java.lang.Enum<WaypointGroupEvent.Context>
journeymap.api.v2.common.event.common.WaypointGroupEvent.Context
- All Implemented Interfaces:
Serializable,Comparable<WaypointGroupEvent.Context>,Constable
- Enclosing class:
WaypointGroupEvent
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic WaypointGroupEvent.ContextReturns the enum constant of this class with the specified name.static WaypointGroupEvent.Context[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
CREATE
Fired when a new waypoint group is created. -
UPDATE
Fired when an existing waypoint group is updated. -
DELETED
Fired when a waypoint group is deleted. -
READ
Fired when a waypoint group. is read from disk, waypoint groups are always read in batches. This event will be fired multiple times in a row, once per waypoint group as it is loaded and put into internal cache.This will happen periodically as the waypoint group cache gets refreshed on dimension change, modifying some options, and at world join.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-