Enum Class FlexLayout.ContentAlignment

java.lang.Object
java.lang.Enum<FlexLayout.ContentAlignment>
com.vaadin.flow.component.orderedlayout.FlexLayout.ContentAlignment
All Implemented Interfaces:
Serializable, Comparable<FlexLayout.ContentAlignment>, Constable
Enclosing class:
FlexLayout

public static enum FlexLayout.ContentAlignment extends Enum<FlexLayout.ContentAlignment>
Enum with the possible values for the component alignment inside the layout. It correlates to the align-items CSS property.
  • Enum Constant Details

    • START

      public static final FlexLayout.ContentAlignment START
      Items are positioned at the beginning of the container.
    • END

      public static final FlexLayout.ContentAlignment END
      Items are positioned at the end of the container.
    • CENTER

      public static final FlexLayout.ContentAlignment CENTER
      Items are positioned at the center of the container.
    • STRETCH

      public static final FlexLayout.ContentAlignment STRETCH
      Items are stretched to fit the container.
    • SPACE_BETWEEN

      public static final FlexLayout.ContentAlignment SPACE_BETWEEN
      Items are distributed evenly inside the container. The first item is flush with the start, the last is flush with the end.
    • SPACE_AROUND

      public static final FlexLayout.ContentAlignment SPACE_AROUND
      Items are distributed evenly inside the container. Items have a half-size space on either end.
  • Method Details

    • values

      public static FlexLayout.ContentAlignment[] 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 FlexLayout.ContentAlignment 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