public enum DebugOption extends Enum<DebugOption>
OpenAPIGenerator.generate(String) when enabled it prints byte code
at different levels.| Enum Constant and Description |
|---|
ALL
Print entire classes.
|
HANDLER
Print a route handler byte code.
|
HANDLER_LINK
Print the jump/link classes that where read to reach a route handler.
|
| Modifier and Type | Method and Description |
|---|---|
static DebugOption |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DebugOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DebugOption ALL
public static final DebugOption HANDLER_LINK
public static final DebugOption HANDLER
public static DebugOption[] values()
for (DebugOption c : DebugOption.values()) System.out.println(c);
public static DebugOption 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 © 2022. All rights reserved.