public static enum RoomTransfer.Type extends Enum<RoomTransfer.Type>
| Enum Constant and Description |
|---|
queue
Some agent of the specified queue will be invited to the groupchat support session.
|
user
A user is being invited to a groupchat support session.
|
workgroup
Some agent of the specified workgroup will be invited to the groupchat support session.
|
| Modifier and Type | Method and Description |
|---|---|
static RoomTransfer.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RoomTransfer.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RoomTransfer.Type user
public static final RoomTransfer.Type queue
public static final RoomTransfer.Type workgroup
public static RoomTransfer.Type[] values()
for (RoomTransfer.Type c : RoomTransfer.Type.values()) System.out.println(c);
public static RoomTransfer.Type valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is null