public static enum MessagingConnector.FreeBusyStatus extends Enum<MessagingConnector.FreeBusyStatus>
| Enum Constant and Description |
|---|
Busy
The attendee is busy
|
Free
The attendee is free
|
Unknown
We don't know if the attendee is busy or free
|
| Modifier and Type | Method and Description |
|---|---|
static MessagingConnector.FreeBusyStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MessagingConnector.FreeBusyStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MessagingConnector.FreeBusyStatus Busy
public static final MessagingConnector.FreeBusyStatus Free
public static final MessagingConnector.FreeBusyStatus Unknown
public static MessagingConnector.FreeBusyStatus[] values()
for (MessagingConnector.FreeBusyStatus c : MessagingConnector.FreeBusyStatus.values()) System.out.println(c);
public static MessagingConnector.FreeBusyStatus valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is null