public static enum Group.MembershipState extends java.lang.Enum<Group.MembershipState>
| Enum Constant and Description |
|---|
AWAITING_CONFIRMATION |
AWAITING_PARENT_GROUP_CONFIRMATION |
BLOCKED |
MANAGER |
MEMBER |
MODERATOR |
NON_MEMBER |
OWNER |
| Modifier and Type | Method and Description |
|---|---|
static Group.MembershipState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Group.MembershipState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Group.MembershipState BLOCKED
public static final Group.MembershipState NON_MEMBER
public static final Group.MembershipState AWAITING_CONFIRMATION
public static final Group.MembershipState AWAITING_PARENT_GROUP_CONFIRMATION
public static final Group.MembershipState MEMBER
public static final Group.MembershipState MODERATOR
public static final Group.MembershipState MANAGER
public static final Group.MembershipState OWNER
public static Group.MembershipState[] values()
for (Group.MembershipState c : Group.MembershipState.values()) System.out.println(c);
public static Group.MembershipState valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null