Enum DecorationPosition

java.lang.Object
java.lang.Enum<DecorationPosition>
org.apache.myfaces.tobago.component.DecorationPosition
All Implemented Interfaces:
Serializable, Comparable<DecorationPosition>, java.lang.constant.Constable

public enum DecorationPosition extends Enum<DecorationPosition>
  • Enum Constant Details

    • none

      public static final DecorationPosition none
      do not render a message to the component
    • buttonLeft

      public static final DecorationPosition buttonLeft
      render a popover button with a message on the left side of the component
    • buttonRight

      public static final DecorationPosition buttonRight
      render a popover button with a message on the right side of the component
    • tooltip

      public static final DecorationPosition tooltip
      render a tooltip under the component
    • textTop

      public static final DecorationPosition textTop
      render text message above the component
    • textBottom

      public static final DecorationPosition textBottom
      render text message under the component
  • Method Details

    • values

      public static DecorationPosition[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static DecorationPosition valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified name
      NullPointerException - if the argument is null