public enum ExtendedReports extends 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(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(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 © 2021. All rights reserved.