public enum DecompilerFlag extends Enum<DecompilerFlag>
| Enum Constant and Description |
|---|
ONLY_BODY
Flag to indicate that the decompilation should omit the function header and trailing brace.
|
TO_SOURCE
Flag to indicate that the decompilation generates toSource result.
|
| Modifier and Type | Method and Description |
|---|---|
static DecompilerFlag |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DecompilerFlag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DecompilerFlag ONLY_BODY
public static final DecompilerFlag TO_SOURCE
public static DecompilerFlag[] values()
for (DecompilerFlag c : DecompilerFlag.values()) System.out.println(c);
public static DecompilerFlag 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 HtmlUnit. All rights reserved.