Enum Class SPMKey

java.lang.Object
java.lang.Enum<SPMKey>
adhdmc.simplepms.utils.SPMKey
All Implemented Interfaces:
Serializable, Comparable<SPMKey>, Constable

public enum SPMKey extends Enum<SPMKey>
  • Nested Class Summary

    Nested classes/interfaces inherited from class java.lang.Enum

    Enum.EnumDesc<E extends Enum<E>>
  • Enum Constant Summary

    Enum Constants
    Enum Constant
    Description
    Internal key used for keeping track of who a player last messaged
    Internal key used for keeping track of a player's spy toggle state
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    (package private) final org.bukkit.NamespacedKey
     
  • Constructor Summary

    Constructors
    Modifier
    Constructor
    Description
    private
    SPMKey(org.bukkit.NamespacedKey key)
     
  • Method Summary

    Modifier and Type
    Method
    Description
    org.bukkit.NamespacedKey
     
    static SPMKey
    Returns the enum constant of this class with the specified name.
    static SPMKey[]
    Returns an array containing the constants of this enum class, in the order they are declared.

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum Constant Details

    • SPY_TOGGLE

      public static final SPMKey SPY_TOGGLE
      Internal key used for keeping track of a player's spy toggle state
    • LAST_MESSAGED

      public static final SPMKey LAST_MESSAGED
      Internal key used for keeping track of who a player last messaged
  • Field Details

    • key

      final org.bukkit.NamespacedKey key
  • Constructor Details

    • SPMKey

      private SPMKey(org.bukkit.NamespacedKey key)
  • Method Details

    • values

      public static SPMKey[] 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 SPMKey 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
    • getKey

      public org.bukkit.NamespacedKey getKey()