public enum ListGroupsOption extends java.lang.Enum<ListGroupsOption> implements ListOption
/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 |
---|---|
int |
getValue() |
static ListGroupsOption |
valueOf(java.lang.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.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
fromBits
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(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 nullpublic int getValue()
getValue
in interface ListOption