Enum Class FlagIcon

java.lang.Object
java.lang.Enum<FlagIcon>
com.independentsoft.pst.FlagIcon
All Implemented Interfaces:
Serializable, Comparable<FlagIcon>, Constable

public enum FlagIcon extends Enum<FlagIcon>
Specifies the colored flag icon shown for a message.
  • Enum Constant Details

    • PURPLE

      public static final FlagIcon PURPLE
      Purple flag.
    • ORANGE

      public static final FlagIcon ORANGE
      Orange flag.
    • GREEN

      public static final FlagIcon GREEN
      Green flag.
    • YELLOW

      public static final FlagIcon YELLOW
      Yellow flag.
    • BLUE

      public static final FlagIcon BLUE
      Blue flag.
    • RED

      public static final FlagIcon RED
      Red flag.
    • NONE

      public static final FlagIcon NONE
      No flag icon.
  • Method Details

    • values

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