|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||
java.lang.Objectjava.lang.Enum<Account.STATUS>
com.skype.api.Account.STATUS
public static enum Account.STATUS
| Enum Constant Summary | |
|---|---|
CONNECTING_TO_P2P
connecting to P2P network |
|
CONNECTING_TO_SERVER
connecting to login server |
|
INITIALIZING
response OK. |
|
LOGGED_IN
alright, we're good to go! |
|
LOGGED_OUT
|
|
LOGGED_OUT_AND_PWD_SAVED
the account is logged out, but password is not needed for re-login |
|
LOGGING_IN
waiting for response from server |
|
LOGGING_OUT
Logout() has been called but not processed yet |
|
| Method Summary | |
|---|---|
static Account.STATUS |
fromString(java.lang.String s)
|
static Account.STATUS |
get(int code)
|
int |
getId()
|
static Account.STATUS |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Account.STATUS[] |
values()
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 Account.STATUS LOGGED_OUT
public static final Account.STATUS LOGGED_OUT_AND_PWD_SAVED
public static final Account.STATUS CONNECTING_TO_P2P
public static final Account.STATUS CONNECTING_TO_SERVER
public static final Account.STATUS LOGGING_IN
public static final Account.STATUS INITIALIZING
public static final Account.STATUS LOGGED_IN
public static final Account.STATUS LOGGING_OUT
| Method Detail |
|---|
public static Account.STATUS[] values()
for (Account.STATUS c : Account.STATUS.values()) System.out.println(c);
public static Account.STATUS 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 name
java.lang.NullPointerException - if the argument is nullpublic int getId()
public static Account.STATUS get(int code)
public static Account.STATUS fromString(java.lang.String s)
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||