Enum Class BusyStatus

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

public enum BusyStatus extends Enum<BusyStatus>
Specifies whether the attendee is busy at the time of an appointment on their calendar. The specified status appears in the free/busy view of the calendar.
  • Enum Constant Details

    • FREE

      public static final BusyStatus FREE
      Free status.
    • TENTATIVE

      public static final BusyStatus TENTATIVE
      Tentative status.
    • BUSY

      public static final BusyStatus BUSY
      Busy status.
    • OUT_OF_OFFICE

      public static final BusyStatus OUT_OF_OFFICE
      Out of the office status.
    • NONE

      public static final BusyStatus NONE
      None.
  • Method Details

    • values

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