public enum ExtendedReports extends java.lang.Enum<ExtendedReports>
Enum Constant and Description |
---|
ALL
All extended reports are written for this object.
|
DEFAULT
Those extended reports to be written are defined client-wide in
the Variable "UC_CLIENT_SETTINGS".
|
NONE
No extended reports are written for this object.
|
Modifier and Type | Method and Description |
---|---|
static ExtendedReports |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ExtendedReports[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExtendedReports ALL
public static final ExtendedReports DEFAULT
public static final ExtendedReports NONE
public static ExtendedReports[] values()
for (ExtendedReports c : ExtendedReports.values()) System.out.println(c);
public static ExtendedReports 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