public enum FreeBusyStatus extends java.lang.Enum<FreeBusyStatus>
| Enum Constant and Description |
|---|
BUSY
busy
|
FREE
free
|
OOF
oof
|
TENTATIVE
tentative
|
UNEXPECTED_VALUE
For FreeBusyStatus values that were not expected from the service
|
UNKNOWN
unknown
|
WORKING_ELSEWHERE
working Elsewhere
|
| Modifier and Type | Method and Description |
|---|---|
static FreeBusyStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FreeBusyStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FreeBusyStatus FREE
public static final FreeBusyStatus TENTATIVE
public static final FreeBusyStatus BUSY
public static final FreeBusyStatus OOF
public static final FreeBusyStatus WORKING_ELSEWHERE
public static final FreeBusyStatus UNKNOWN
public static final FreeBusyStatus UNEXPECTED_VALUE
public static FreeBusyStatus[] values()
for (FreeBusyStatus c : FreeBusyStatus.values()) System.out.println(c);
public static FreeBusyStatus 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