Enum Class SidePanelPosition

java.lang.Object
java.lang.Enum<SidePanelPosition>
io.jmix.flowui.kit.component.sidepanellayout.SidePanelPosition
All Implemented Interfaces:
Serializable, Comparable<SidePanelPosition>, Constable

public enum SidePanelPosition extends Enum<SidePanelPosition>
Represents the position of the side panel relative to the main content.
  • Enum Constant Details

    • TOP

      public static final SidePanelPosition TOP
      The side panel is placed at the top of the main content.
    • BOTTOM

      public static final SidePanelPosition BOTTOM
      The side panel is placed at the bottom of the main content.
    • LEFT

      public static final SidePanelPosition LEFT
      The side panel is placed to the left of the main content. Does not consider RTL mode.
    • INLINE_START

      public static final SidePanelPosition INLINE_START
      The side panel is placed at the start position depending on the directionality (RTL or LTR) of the layout.
    • INLINE_END

      public static final SidePanelPosition INLINE_END
      The side panel is placed at the end position depending on the directionality (RTL or LTR) of the layout.
  • Method Details

    • values

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