|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<ConnectionStatus>
tigase.xmpp.ConnectionStatus
@Deprecated public enum ConnectionStatus
The XMPPResourceConnection Object can be put in special states
when all packets received to by this connection are threated in
different way:
INIT - Behaviour is like in NORMAL state. It is
just an indication that the session is in an initial phase before authentication.
ON_HOLD - packets are not processed at all, they are
collected by instead for later time.
REDIRECT - packets received by this connection are
being redirected to a different SM for processing.
NORMAL - packets are processed in normal way.
Created: Wed Aug 13 20:58:33 2008
| Enum Constant Summary | |
|---|---|
INIT
Deprecated. |
|
NORMAL
Deprecated. |
|
ON_HOLD
Deprecated. |
|
REDIRECT
Deprecated. |
|
REMOTE
Deprecated. |
|
TEMP
Deprecated. |
|
| Method Summary | |
|---|---|
static ConnectionStatus |
valueOf(String name)
Deprecated. Returns the enum constant of this type with the specified name. |
static ConnectionStatus[] |
values()
Deprecated. Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final ConnectionStatus INIT
public static final ConnectionStatus ON_HOLD
public static final ConnectionStatus REDIRECT
public static final ConnectionStatus NORMAL
public static final ConnectionStatus TEMP
public static final ConnectionStatus REMOTE
| Method Detail |
|---|
public static ConnectionStatus[] values()
for (ConnectionStatus c : ConnectionStatus.values()) System.out.println(c);
public static ConnectionStatus valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||