Enum Class Unimplemented.REASON

java.lang.Object
java.lang.Enum<Unimplemented.REASON>
dev.jorel.commandapi.preprocessor.Unimplemented.REASON
All Implemented Interfaces:
Serializable, Comparable<Unimplemented.REASON>, Constable
Enclosing class:
Unimplemented

public static enum Unimplemented.REASON extends Enum<Unimplemented.REASON>
The reason why this method was unimplemented
  • Enum Constant Details

    • REQUIRES_CRAFTBUKKIT

      public static final Unimplemented.REASON REQUIRES_CRAFTBUKKIT
      This method requires importing org.bukkit.craftbukkit
    • NAME_CHANGED

      public static final Unimplemented.REASON NAME_CHANGED
      A method or field name changed
    • VERSION_SPECIFIC_IMPLEMENTATION

      public static final Unimplemented.REASON VERSION_SPECIFIC_IMPLEMENTATION
      The implementation of this feature is specific to a given Minecraft version
    • REQUIRES_CSS

      public static final Unimplemented.REASON REQUIRES_CSS
      Requires access to CommandSourceStack (CommandListenerWrapper)
    • REQUIRES_MINECRAFT_SERVER

      public static final Unimplemented.REASON REQUIRES_MINECRAFT_SERVER
      Requires access to the NMS Minecraft server
  • Method Details

    • values

      public static Unimplemented.REASON[] 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 Unimplemented.REASON 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