Enum Class SideDialogPosition

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

public enum SideDialogPosition extends Enum<SideDialogPosition>
Represents the position of the side dialog relative to the application window.
  • Nested Class Summary

    Nested classes/interfaces inherited from class java.lang.Enum

    Enum.EnumDesc<E extends Enum<E>>
  • Enum Constant Summary

    Enum Constants
    Enum Constant
    Description
    The side dialog is placed at the bottom of the application window.
    The side dialog is placed at the end position depending on the directionality (RTL or LTR) of the layout.
    The side dialog is placed at the start position depending on the directionality (RTL or LTR) of the layout.
    The side dialog is placed to the left of the application window.
    The side dialog is placed to the right of the application window.
    The side dialog is placed at the top of the application window.
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the enum constant of this class with the specified name.
    Returns an array containing the constants of this enum class, in the order they are declared.

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum Constant Details

    • TOP

      public static final SideDialogPosition TOP
      The side dialog is placed at the top of the application window.
    • BOTTOM

      public static final SideDialogPosition BOTTOM
      The side dialog is placed at the bottom of the application window.
    • LEFT

      public static final SideDialogPosition LEFT
      The side dialog is placed to the left of the application window. Does not consider RTL mode.
    • INLINE_START

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

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

    • values

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