public static enum StatisticsReport.StatisticsReportMode extends java.lang.Enum<StatisticsReport.StatisticsReportMode>
Enum Constant and Description |
---|
OFF
No statistics report
|
PLUG_IN
Plug in your own format.
|
STANDARD
Standard statistics report format
|
Modifier and Type | Method and Description |
---|---|
static StatisticsReport.StatisticsReportMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StatisticsReport.StatisticsReportMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StatisticsReport.StatisticsReportMode OFF
public static final StatisticsReport.StatisticsReportMode STANDARD
public static final StatisticsReport.StatisticsReportMode PLUG_IN
public static StatisticsReport.StatisticsReportMode[] values()
for (StatisticsReport.StatisticsReportMode c : StatisticsReport.StatisticsReportMode.values()) System.out.println(c);
public static StatisticsReport.StatisticsReportMode 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