public enum AttendeeType extends java.lang.Enum<AttendeeType>
| Enum Constant and Description |
|---|
OPTIONAL
optional
|
REQUIRED
required
|
RESOURCE
resource
|
UNEXPECTED_VALUE
For AttendeeType values that were not expected from the service
|
| Modifier and Type | Method and Description |
|---|---|
static AttendeeType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AttendeeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AttendeeType REQUIRED
public static final AttendeeType OPTIONAL
public static final AttendeeType RESOURCE
public static final AttendeeType UNEXPECTED_VALUE
public static AttendeeType[] values()
for (AttendeeType c : AttendeeType.values()) System.out.println(c);
public static AttendeeType 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