Enum Class GuiCursor

java.lang.Object
java.lang.Enum<GuiCursor>
com.render.api.gui.style.GuiCursor
All Implemented Interfaces:
Serializable, Comparable<GuiCursor>, Constable

public enum GuiCursor extends Enum<GuiCursor>
Built-in managed-view cursor intents.
  • Enum Constant Details

    • AUTO

      public static final GuiCursor AUTO
    • DEFAULT

      public static final GuiCursor DEFAULT
    • POINTER

      public static final GuiCursor POINTER
    • TEXT

      public static final GuiCursor TEXT
    • CROSSHAIR

      public static final GuiCursor CROSSHAIR
    • MOVE

      public static final GuiCursor MOVE
    • NOT_ALLOWED

      public static final GuiCursor NOT_ALLOWED
    • RESIZE_HORIZONTAL

      public static final GuiCursor RESIZE_HORIZONTAL
    • RESIZE_VERTICAL

      public static final GuiCursor RESIZE_VERTICAL
    • RESIZE_DIAGONAL_NW_SE

      public static final GuiCursor RESIZE_DIAGONAL_NW_SE
    • RESIZE_DIAGONAL_NE_SW

      public static final GuiCursor RESIZE_DIAGONAL_NE_SW
    • NONE

      public static final GuiCursor NONE
  • Method Details

    • values

      public static GuiCursor[] 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 GuiCursor 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