Enum Class GuiMarkerSide

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

public enum GuiMarkerSide extends Enum<GuiMarkerSide>
Selects which direction determines the inline side used by an outside marker.
  • Enum Constant Details

    • MATCH_SELF

      public static final GuiMarkerSide MATCH_SELF
      Uses the list item's own direction.
    • MATCH_PARENT

      public static final GuiMarkerSide MATCH_PARENT
      Uses the list item's parent direction, aligning sibling marker columns.
  • Method Details

    • values

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