public static enum TypePool.Default.WithLazyResolution.LazinessMode extends Enum<TypePool.Default.WithLazyResolution.LazinessMode>
| Enum Constant and Description |
|---|
EXTENDED
Resolves the name lazily, and does not parse the entire class file as long as only the non-generic
names of super class and interfaces, as well as class flags are read.
|
NAME
Only resolves the name lazily, but resolves the full class file otherwise.
|
| Modifier and Type | Method and Description |
|---|---|
static TypePool.Default.WithLazyResolution.LazinessMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TypePool.Default.WithLazyResolution.LazinessMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TypePool.Default.WithLazyResolution.LazinessMode NAME
public static final TypePool.Default.WithLazyResolution.LazinessMode EXTENDED
public static TypePool.Default.WithLazyResolution.LazinessMode[] values()
for (TypePool.Default.WithLazyResolution.LazinessMode c : TypePool.Default.WithLazyResolution.LazinessMode.values()) System.out.println(c);
public static TypePool.Default.WithLazyResolution.LazinessMode 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. All rights reserved.