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

public static enum WaypointGroupEvent.Context extends Enum<WaypointGroupEvent.Context>
  • Enum Constant Details

    • CREATE

      public static final WaypointGroupEvent.Context CREATE
      Fired when a new waypoint group is created.
    • UPDATE

      public static final WaypointGroupEvent.Context UPDATE
      Fired when an existing waypoint group is updated.
    • DELETED

      public static final WaypointGroupEvent.Context DELETED
      Fired when a waypoint group is deleted.
    • READ

      public static final WaypointGroupEvent.Context 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

      public static WaypointGroupEvent.Context[] 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

      public static WaypointGroupEvent.Context valueOf(String name)
      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 name
      NullPointerException - if the argument is null