|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<Profile.Status>
com.skype.Profile.Status
public static enum Profile.Status
The Status
enum contains the online status constants of the current user.
Profile.getStatus()
,
Profile.setStatus(Status)k
Enum Constant Summary | |
---|---|
AWAY
The AWAY constant indicates the user is away. |
|
DND
The DND constant indicates the user is in do not disturb mode. |
|
INVISIBLE
The INVISIBLE constant indicates the user is invisible to others. |
|
LOGGEDOUT
The LOGGEDOUT constant indicates the user is logged out. |
|
NA
The NA constant indicates the user is not available. |
|
OFFLINE
The OFFLINE constant indicates the user is offline. |
|
ONLINE
The ONLINE constant indicates the user is online. |
|
SKYPEME
The SKYPEME constant indicates the user is in SkypeMe mode. |
|
UNKNOWN
The UNKNOWN constant indicates the user status is unknown. |
Method Summary | |
---|---|
static Profile.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Profile.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 Profile.Status UNKNOWN
UNKNOWN
constant indicates the user status is unknown.
public static final Profile.Status ONLINE
ONLINE
constant indicates the user is online.
public static final Profile.Status OFFLINE
OFFLINE
constant indicates the user is offline.
public static final Profile.Status SKYPEME
SKYPEME
constant indicates the user is in SkypeMe mode.
public static final Profile.Status AWAY
AWAY
constant indicates the user is away.
public static final Profile.Status NA
NA
constant indicates the user is not available.
public static final Profile.Status DND
DND
constant indicates the user is in do not disturb mode.
public static final Profile.Status INVISIBLE
INVISIBLE
constant indicates the user is invisible to others.
public static final Profile.Status LOGGEDOUT
LOGGEDOUT
constant indicates the user is logged out.
Method Detail |
---|
public static Profile.Status[] values()
for (Profile.Status c : Profile.Status.values()) System.out.println(c);
public static Profile.Status 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 |