Enum Class WaypointEvent.Context
- All Implemented Interfaces:
Serializable,Comparable<WaypointEvent.Context>,Constable
- Enclosing class:
WaypointEvent
-
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 WaypointEvent.ContextReturns the enum constant of this class with the specified name.static WaypointEvent.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 is created. -
UPDATE
Fired when an existing waypoint is updated. -
DELETED
Fired when a waypoint is deleted. -
READ
Fired when a waypoint is read from disk, waypoints are always read in batches. This event will be fired multiple times in a row, once per waypoint as it is loaded and put into internal cache.This will happen periodically as the waypoint 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
-