Enum Class Sensitivity

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

public enum Sensitivity extends Enum<Sensitivity>
Specifies the sensitivity of a message.
  • Enum Constant Details

    • PERSONAL

      public static final Sensitivity PERSONAL
      Personal sensitivity.
    • PRIVATE

      public static final Sensitivity PRIVATE
      Private sensitivity.
    • CONFIDENTIAL

      public static final Sensitivity CONFIDENTIAL
      Company-confidential sensitivity.
    • NONE

      public static final Sensitivity NONE
      The sensitivity is not specified (normal).
  • 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