Enum Class MeetingStatus

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

public enum MeetingStatus extends Enum<MeetingStatus>
The MeetingStatus enum specifies the status of an appointment or meeting.
  • Enum Constant Details

    • NON_MEETING

      public static final MeetingStatus NON_MEETING
      An Appointment item without attendees has been scheduled. This status can be used to set up holidays on a calendar.
    • MEETING

      public static final MeetingStatus MEETING
      The meeting has been scheduled.
    • RECEIVED

      public static final MeetingStatus RECEIVED
      The meeting request has been received.
    • CANCELED_ORGANIZER

      public static final MeetingStatus CANCELED_ORGANIZER
      The scheduled meeting has been cancelled but still appears on the user's calendar.
    • CANCELED

      public static final MeetingStatus CANCELED
      The scheduled meeting has been cancelled.
    • NONE

      public static final MeetingStatus NONE
      None.
  • Method Details

    • values

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