public enum AttendeeStatus extends java.lang.Enum<AttendeeStatus>
| Enum Constant and Description |
|---|
ACCEPTED
"accepted" - The attendee has accepted the invitation.
|
DECLINED
"declined" - The attendee has declined the invitation.
|
NEEDS_ACTION
"needsAction" - The attendee has not responded to the invitation.
|
TENTATIVE
"tentative" - The attendee has tentatively accepted the invitation.
|
| Modifier and Type | Method and Description |
|---|---|
static AttendeeStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AttendeeStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AttendeeStatus NEEDS_ACTION
public static final AttendeeStatus DECLINED
public static final AttendeeStatus TENTATIVE
public static final AttendeeStatus ACCEPTED
public static AttendeeStatus[] values()
for (AttendeeStatus c : AttendeeStatus.values()) System.out.println(c);
public static AttendeeStatus 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