public static enum Group.Type extends Enum<Group.Type>
| Enum Constant and Description |
|---|
ALL_FRIENDS |
ALL_USERS
ALL_USERS - This group contains all users I know about, including users in my contactlist, users I recently contacted and blocked users.
|
CUSTOM_GROUP |
ONLINE_FRIENDS |
PROPOSED_SHARED_GROUP |
RECENTLY_CONTACTED_USERS |
SHARED_GROUP |
SKYPE_FRIENDS |
SKYPEOUT_FRIENDS |
UNGROUPED_FRIENDS |
UNKNOWN_OR_PENDINGAUTH_FRIENDS |
USERS_AUTHORIZED_BY_ME |
USERS_BLOCKED_BY_ME |
USERS_WAITING_MY_AUTHORIZATION |
| Modifier and Type | Method and Description |
|---|---|
static Group.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Group.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Group.Type ALL_USERS
public static final Group.Type ALL_FRIENDS
public static final Group.Type SKYPE_FRIENDS
public static final Group.Type SKYPEOUT_FRIENDS
public static final Group.Type ONLINE_FRIENDS
public static final Group.Type UNKNOWN_OR_PENDINGAUTH_FRIENDS
public static final Group.Type RECENTLY_CONTACTED_USERS
public static final Group.Type USERS_WAITING_MY_AUTHORIZATION
public static final Group.Type USERS_AUTHORIZED_BY_ME
public static final Group.Type USERS_BLOCKED_BY_ME
public static final Group.Type UNGROUPED_FRIENDS
public static final Group.Type CUSTOM_GROUP
public static final Group.Type SHARED_GROUP
public static final Group.Type PROPOSED_SHARED_GROUP
public static Group.Type[] values()
for (Group.Type c : Group.Type.values()) System.out.println(c);
public static Group.Type 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.