public enum OffsiteMode extends java.lang.Enum<OffsiteMode>
OffsiteMode
enum represents the possible offsite modes that a user can be administered with in the Contact Center.Enum Constant and Description |
---|
Disabled
Indicates that the user is not configured to work in offsite mode and must work at the Contact Center site location.
|
Mandatory
Indicates that the user can only work in offsite mode.
|
Optional
Indicates that the user is configured to work in offsite mode and can work either at the Contact Center site location or
offsite.
|
Unknown |
Modifier and Type | Method and Description |
---|---|
static OffsiteMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OffsiteMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OffsiteMode Disabled
public static final OffsiteMode Optional
public static final OffsiteMode Mandatory
public static final OffsiteMode Unknown
public static OffsiteMode[] values()
for (OffsiteMode c : OffsiteMode.values()) System.out.println(c);
public static OffsiteMode 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