public enum OutOfOfficeState extends java.lang.Enum<OutOfOfficeState>
| Enum Constant and Description |
|---|
DISABLED
Indicates that the OOF status is set to Disabled.
|
ENABLED
Indicates that the OOF status is set to Enabled.
|
SCHEDULED
Indicates that the OOF status is set to Enabled during a time period identified by the Duration (UserOofSettings) element.
|
| Modifier and Type | Method and Description |
|---|---|
static OutOfOfficeState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OutOfOfficeState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OutOfOfficeState DISABLED
public static final OutOfOfficeState ENABLED
public static final OutOfOfficeState SCHEDULED
public static OutOfOfficeState[] values()
for (OutOfOfficeState c : OutOfOfficeState.values()) System.out.println(c);
public static OutOfOfficeState 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