| Enum Constant and Description |
|---|
GROUPS
Defines Group Accounts report
|
PROCESSES
Defines Process Accounts report
|
UNKNOWN
Unknown type
|
USERS
Defines User Accounts report
|
| Modifier and Type | Method and Description |
|---|---|
static Reports |
getId(java.lang.String name)
Returns a target report type by its name or unknown type if a type having the target name
doesn't exist.
|
static Reports |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Reports[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Reports UNKNOWN
public static final Reports USERS
public static final Reports GROUPS
public static final Reports PROCESSES
public static Reports[] values()
for (Reports c : Reports.values()) System.out.println(c);
public static Reports 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 static Reports getId(java.lang.String name)
name - Report type name