public enum OffsiteState extends java.lang.Enum<OffsiteState>
OffsiteState
enum represents the possible states of the permanent call (also known as the nailed up call) to the
users offsite device when working in offsite mode.
The purpose of the permanent call is to deliver media to the user for all calls terminating at the Contact Center user
Enum Constant and Description |
---|
Connected
The permanent call is connected on the user's offsite phone.
|
Failed
The permanent call failed to be setup on the user's offsite phone.
|
Idle
The permanent call has not been initiated.
|
Inactive
The user is not in offsite mode.
|
Ringing
The permanent call is ringing on the user's offsite phone.
|
Unknown
The permanent call state is unknown.
|
Modifier and Type | Method and Description |
---|---|
static OffsiteState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OffsiteState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OffsiteState Inactive
public static final OffsiteState Idle
public static final OffsiteState Ringing
public static final OffsiteState Connected
public static final OffsiteState Failed
public static final OffsiteState Unknown
public static OffsiteState[] values()
for (OffsiteState c : OffsiteState.values()) System.out.println(c);
public static OffsiteState 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