public enum BusyStatus extends java.lang.Enum<BusyStatus>
| Enum Constant and Description |
|---|
BUSY
Busy status.
|
FREE
Free status.
|
NONE
None.
|
OUT_OF_OFFICE
Out of the office status.
|
TENTATIVE
Tentative status.
|
WORKING_ELSEWHERE
WorkingElsewhere status.
|
| Modifier and Type | Method and Description |
|---|---|
static BusyStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BusyStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BusyStatus FREE
public static final BusyStatus TENTATIVE
public static final BusyStatus BUSY
public static final BusyStatus OUT_OF_OFFICE
public static final BusyStatus WORKING_ELSEWHERE
public static final BusyStatus NONE
public static BusyStatus[] values()
for (BusyStatus c : BusyStatus.values()) System.out.println(c);
public static BusyStatus 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