Enum Class Sensitivity

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

public enum Sensitivity extends Enum<Sensitivity>
Identifies the sensitivity level assigned to a message item. These levels are arbitrarily set and filtered for, by the user.
  • Enum Constant Details

    • PERSONAL

      public static final Sensitivity PERSONAL
      The message has the Personal sensitivity setting.
    • PRIVATE

      public static final Sensitivity PRIVATE
      The message has the Private sensitivity setting.
    • CONFIDENTIAL

      public static final Sensitivity CONFIDENTIAL
      The message has the Confidential sensitivity setting
    • NONE

      public static final Sensitivity NONE
      The message has the Normal sensitivity setting.
  • Method Details

    • values

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