public enum QuickConnectionState extends java.lang.Enum<QuickConnectionState>
| Enum Constant and Description |
|---|
ESTABLISHED
The QUICK connection is established - the second user already activated and joined this connection.
|
NONE
There is no QUICK connection between the two parties.
|
PENDING_FOR_REQUESTING_USER
The QUICK connection has been initialized and offered to the requesting user, but not activated.
|
PENDING_FOR_TARGET_USER
The QUICK connection has been initialized and offered to the target user, but not activated.
|
| Modifier and Type | Method and Description |
|---|---|
static QuickConnectionState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static QuickConnectionState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QuickConnectionState ESTABLISHED
public static final QuickConnectionState PENDING_FOR_REQUESTING_USER
public static final QuickConnectionState PENDING_FOR_TARGET_USER
public static final QuickConnectionState NONE
public static QuickConnectionState[] values()
for (QuickConnectionState c : QuickConnectionState.values()) System.out.println(c);
public static QuickConnectionState 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