Enum Class GuiDisplay

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

public enum GuiDisplay extends Enum<GuiDisplay>
Modern formatting role.

RETAINED adapts the original RenderLib container mode and is the compatibility initial value for existing fluent APIs.

  • Enum Constant Details

    • RETAINED

      public static final GuiDisplay RETAINED
    • NONE

      public static final GuiDisplay NONE
    • CONTENTS

      public static final GuiDisplay CONTENTS
    • BLOCK

      public static final GuiDisplay BLOCK
    • INLINE

      public static final GuiDisplay INLINE
    • FLOW_ROOT

      public static final GuiDisplay FLOW_ROOT
    • LIST_ITEM

      public static final GuiDisplay LIST_ITEM
    • FLEX

      public static final GuiDisplay FLEX
    • INLINE_FLEX

      public static final GuiDisplay INLINE_FLEX
    • GRID

      public static final GuiDisplay GRID
    • INLINE_GRID

      public static final GuiDisplay INLINE_GRID
    • TABLE

      public static final GuiDisplay TABLE
    • INLINE_TABLE

      public static final GuiDisplay INLINE_TABLE
    • TABLE_ROW_GROUP

      public static final GuiDisplay TABLE_ROW_GROUP
    • TABLE_HEADER_GROUP

      public static final GuiDisplay TABLE_HEADER_GROUP
    • TABLE_ROW

      public static final GuiDisplay TABLE_ROW
    • TABLE_CELL

      public static final GuiDisplay TABLE_CELL
    • TABLE_COLUMN

      public static final GuiDisplay TABLE_COLUMN
    • TABLE_CAPTION

      public static final GuiDisplay TABLE_CAPTION
    • MULTI_COLUMN

      public static final GuiDisplay MULTI_COLUMN
    • PAGED

      public static final GuiDisplay PAGED
  • Method Details

    • values

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