public enum ListGroupsOption extends Enum<ListGroupsOption>
/groups/
RPCs.Enum Constant and Description |
---|
INCLUDES
Return information on the directly included groups.
|
MEMBERS
Return information on the direct group members.
|
Modifier and Type | Method and Description |
---|---|
static EnumSet<ListGroupsOption> |
fromBits(int v) |
int |
getValue() |
static int |
toBits(EnumSet<ListGroupsOption> set) |
static ListGroupsOption |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ListGroupsOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ListGroupsOption MEMBERS
public static final ListGroupsOption INCLUDES
public static ListGroupsOption[] values()
for (ListGroupsOption c : ListGroupsOption.values()) System.out.println(c);
public static ListGroupsOption 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 nullpublic int getValue()
public static EnumSet<ListGroupsOption> fromBits(int v)
public static int toBits(EnumSet<ListGroupsOption> set)