|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<ReportEnum>
com.bigdata.counters.query.ReportEnum
public enum ReportEnum
The different kinds of reports that we can generate.
| Enum Constant Summary | |
|---|---|
correlated
A correlated view will be generated for the spanned counters showing all samples for each counter in a column where the rows are all for the same sample period. |
|
events
Plot a timeline of events. |
|
hierarchy
This is the navigational view of the performance counter hierarchy. |
|
pivot
This is a pivot table ready view, which is useful for aggregating the performance counter data in a variety of ways. |
|
| Method Summary | |
|---|---|
static ReportEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static ReportEnum[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final ReportEnum hierarchy
public static final ReportEnum correlated
public static final ReportEnum pivot
public static final ReportEnum events
| Method Detail |
|---|
public static ReportEnum[] values()
for (ReportEnum c : ReportEnum.values()) System.out.println(c);
public static ReportEnum valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||