Enum Class ResponsiveGridLayout.AlignSelf

java.lang.Object
java.lang.Enum<ResponsiveGridLayout.AlignSelf>
io.jmix.ui.component.ResponsiveGridLayout.AlignSelf
All Implemented Interfaces:
Serializable, Comparable<ResponsiveGridLayout.AlignSelf>, Constable
Enclosing interface:
ResponsiveGridLayout

public static enum ResponsiveGridLayout.AlignSelf extends Enum<ResponsiveGridLayout.AlignSelf>
Represents the default behavior for how individual flex item is laid out along the cross axis.

Corresponds to the align-self CSS attribute.

See Also:
  • Enum Constant Details

    • AUTO

      public static final ResponsiveGridLayout.AlignSelf AUTO
      Item inherits its parent row's align-items property.

      Corresponds to the .align-self-auto style.

    • START

      public static final ResponsiveGridLayout.AlignSelf START
      Item is placed at the start of the cross axis.

      Corresponds to the .align-self-start style.

    • CENTER

      public static final ResponsiveGridLayout.AlignSelf CENTER
      Item is centered in the cross-axis.

      Corresponds to the .align-self-center style.

    • END

      public static final ResponsiveGridLayout.AlignSelf END
      Item is placed at the end of the cross axis.

      Corresponds to the .align-self-end style.

    • BASELINE

      public static final ResponsiveGridLayout.AlignSelf BASELINE
      Item is aligned such as their baselines align.

      Corresponds to the .align-self-baseline style.

    • STRETCH

      public static final ResponsiveGridLayout.AlignSelf STRETCH
      Stretch to fill the container.

      Corresponds to the .align-self-stretch style.

  • Method Details

    • values

      public static ResponsiveGridLayout.AlignSelf[] 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 ResponsiveGridLayout.AlignSelf 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