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