public static enum ResultFormatter.InfoCategory extends java.lang.Enum<ResultFormatter.InfoCategory>
| Enum Constant and Description |
|---|
BREAKDOWN
Marks the breakdown section, i.e. where global system measurements
are related to group / variability measurements.
|
CONFIGURATIONS
Marks the configurations section, i.e. where measurements for
compositions of monitoring groups are emitted.
|
THREADED
Marks the program as explicitly threaded and headlines the threads
to be emitted.
|
| Modifier and Type | Method and Description |
|---|---|
static ResultFormatter.InfoCategory |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ResultFormatter.InfoCategory[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ResultFormatter.InfoCategory THREADED
public static final ResultFormatter.InfoCategory BREAKDOWN
public static final ResultFormatter.InfoCategory CONFIGURATIONS
public static ResultFormatter.InfoCategory[] values()
for (ResultFormatter.InfoCategory c : ResultFormatter.InfoCategory.values()) System.out.println(c);
public static ResultFormatter.InfoCategory 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