Enum Class AlertIcon

java.lang.Object
java.lang.Enum<AlertIcon>
com.i2group.disco.alerts.AlertIcon
All Implemented Interfaces:
Serializable, Comparable<AlertIcon>, Constable

public enum AlertIcon extends Enum<AlertIcon>
The icon to associate with an alert.
Since:
12.0
  • Enum Constant Details

    • SUCCESS

      public static final AlertIcon SUCCESS
      An icon that indicates success.
    • INFORMATION

      public static final AlertIcon INFORMATION
      An information icon.
    • WARNING

      public static final AlertIcon WARNING
      A warning icon.
    • ERROR

      public static final AlertIcon ERROR
      An error icon.
    • PLUS

      public static final AlertIcon PLUS
      An icon that indicates an increase or addition.
    • MINUS

      public static final AlertIcon MINUS
      An icon that indicates a decrease or subtraction.
  • Method Details

    • values

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