public enum GroupsReportOrder extends Enum<GroupsReportOrder>
Enum Constant and Description |
---|
GROUP_NAME
Order by group name
|
WORKSPACE_NAME
Order by workspace name
|
Modifier and Type | Method and Description |
---|---|
static GroupsReportOrder |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GroupsReportOrder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GroupsReportOrder GROUP_NAME
public static final GroupsReportOrder WORKSPACE_NAME
public static GroupsReportOrder[] values()
for (GroupsReportOrder c : GroupsReportOrder.values()) System.out.println(c);
public static GroupsReportOrder 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 © 2019. All rights reserved.