|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<User.BuddyStatus>
com.skype.User.BuddyStatus
public static enum User.BuddyStatus
The BuddyStatus
enum contains the buddy status of the skype user.
Enum Constant Summary | |
---|---|
ADDED
The ADDED constant indicates the skype user is added to contact list. |
|
DELETED
The DELETED constant indicates the skype user is deleted from contact list. |
|
NEVER_BEEN
The NEVER_BEEN constant indicates the skype user has never been in contact list. |
|
PENDING
The PENDING constant indicates the skype user is pending authorisation. |
Method Summary | |
---|---|
static User.BuddyStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static User.BuddyStatus[] |
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.BuddyStatus NEVER_BEEN
NEVER_BEEN
constant indicates the skype user has never been in contact list.
public static final User.BuddyStatus DELETED
DELETED
constant indicates the skype user is deleted from contact list.
public static final User.BuddyStatus PENDING
PENDING
constant indicates the skype user is pending authorisation.
public static final User.BuddyStatus ADDED
ADDED
constant indicates the skype user is added to contact list.
Method Detail |
---|
public static User.BuddyStatus[] values()
for (User.BuddyStatus c : User.BuddyStatus.values()) System.out.println(c);
public static User.BuddyStatus 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 |