public static enum User.Status extends Enum<User.Status>
Status enum contains the online status constants of the skype user.User.getOnlineStatus()| Enum Constant and Description |
|---|
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. |
| Modifier and Type | Method and Description |
|---|---|
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.
|
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.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 nameNullPointerException - if the argument is nullCopyright © 2013. All Rights Reserved.