public static enum EntryPoint.Default extends Enum<EntryPoint.Default> implements EntryPoint
EntryPoint.Default, EntryPoint.Unvalidated
Enum Constant and Description |
---|
DECORATE
An entry point that decorates a type and which only offers limited support for transformation by only allowing
for the application of
AsmVisitorWrapper s while improving performance. |
REBASE
An entry point that rebases a type.
|
REDEFINE
An entry point that redefines a type.
|
REDEFINE_LOCAL
An entry point that redefines a type and which does not change the dynamic type's shape, i.e.
|
Modifier and Type | Method and Description |
---|---|
static EntryPoint.Default |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EntryPoint.Default[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
byteBuddy, transform
public static final EntryPoint.Default REBASE
public static final EntryPoint.Default REDEFINE
public static final EntryPoint.Default REDEFINE_LOCAL
public static final EntryPoint.Default DECORATE
AsmVisitorWrapper
s while improving performance.public static EntryPoint.Default[] values()
for (EntryPoint.Default c : EntryPoint.Default.values()) System.out.println(c);
public static EntryPoint.Default 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.