Enum Class FabPosition

java.lang.Object
java.lang.Enum<FabPosition>
com.flowingcode.vaadin.addons.chatassistant.model.FabPosition
All Implemented Interfaces:
Serializable, Comparable<FabPosition>, Constable

public enum FabPosition extends Enum<FabPosition>
The corner of the viewport where the floating action button is initially placed.
Since:
5.1.0
  • Enum Constant Details

    • BOTTOM_RIGHT

      public static final FabPosition BOTTOM_RIGHT
    • BOTTOM_LEFT

      public static final FabPosition BOTTOM_LEFT
    • TOP_RIGHT

      public static final FabPosition TOP_RIGHT
    • TOP_LEFT

      public static final FabPosition TOP_LEFT
  • Method Details

    • values

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