public static enum FlameGraphTypeQueryParameter.Type extends Enum<FlameGraphTypeQueryParameter.Type>
| Enum Constant and Description |
|---|
FULL
Type of the Flame Graph that includes threads in all possible states.
|
OFF_CPU
Type of the Flame Graph that includes threads in states Thread.State.
|
ON_CPU
Type of the Flame Graph that includes threads in states Thread.State.
|
| Modifier and Type | Method and Description |
|---|---|
static FlameGraphTypeQueryParameter.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FlameGraphTypeQueryParameter.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FlameGraphTypeQueryParameter.Type FULL
public static final FlameGraphTypeQueryParameter.Type ON_CPU
public static final FlameGraphTypeQueryParameter.Type OFF_CPU
public static FlameGraphTypeQueryParameter.Type[] values()
for (FlameGraphTypeQueryParameter.Type c : FlameGraphTypeQueryParameter.Type.values()) System.out.println(c);
public static FlameGraphTypeQueryParameter.Type 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 © 2014–2025 The Apache Software Foundation. All rights reserved.