Enum Class Version

java.lang.Object
java.lang.Enum<Version>
dev.selena.luacore.nms.Version
All Implemented Interfaces:
Serializable, Comparable<Version>, Constable

public enum Version extends Enum<Version>
Used for NMS reflections
  • Enum Constant Details Link icon

    • v1_20_R3 Link icon

      public static final Version v1_20_R3
      Used for 1.20.3-1.20.4
    • v1_20_R2 Link icon

      public static final Version v1_20_R2
      Used for 1.20.2
    • v1_20_6 Link icon

      public static final Version v1_20_6
    • NOT_SUPPORTED Link icon

      public static final Version NOT_SUPPORTED
      Used for any other versions
  • Method Details Link icon

    • values Link icon

      public static Version[] 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 Link icon

      public static Version 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