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