public static enum AsyncProfiler.OutputType extends Enum<AsyncProfiler.OutputType>
| Enum Constant and Description |
|---|
collapsed |
flamegraph |
jfr |
text |
tree |
| Modifier and Type | Method and Description |
|---|---|
static AsyncProfiler.OutputType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AsyncProfiler.OutputType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AsyncProfiler.OutputType text
public static final AsyncProfiler.OutputType collapsed
public static final AsyncProfiler.OutputType flamegraph
public static final AsyncProfiler.OutputType tree
public static final AsyncProfiler.OutputType jfr
public static AsyncProfiler.OutputType[] values()
for (AsyncProfiler.OutputType c : AsyncProfiler.OutputType.values()) System.out.println(c);
public static AsyncProfiler.OutputType 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 © 2025. All rights reserved.