public enum ReportEnum extends Enum<ReportEnum>
Enum Constant and Description |
---|
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.
|
Modifier and Type | Method and Description |
---|---|
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.
|
public static final ReportEnum hierarchy
public static final ReportEnum correlated
public static final ReportEnum pivot
public static final ReportEnum events
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 nameNullPointerException
- if the argument is nullCopyright © 2006–2019 SYSTAP, LLC DBA Blazegraph. All rights reserved.