public enum MeetingAttendeeType extends java.lang.Enum<MeetingAttendeeType>
| Enum Constant and Description |
|---|
OPTIONAL
An optional attendee.
|
ORGANIZER
The organizer of the meeting.
|
REQUIRED
A required attendee.
|
RESOURCE
A resource.
|
ROOM
A room.
|
| Modifier and Type | Method and Description |
|---|---|
static MeetingAttendeeType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MeetingAttendeeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MeetingAttendeeType ORGANIZER
public static final MeetingAttendeeType REQUIRED
public static final MeetingAttendeeType OPTIONAL
public static final MeetingAttendeeType ROOM
public static final MeetingAttendeeType RESOURCE
public static MeetingAttendeeType[] values()
for (MeetingAttendeeType c : MeetingAttendeeType.values()) System.out.println(c);
public static MeetingAttendeeType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null