public static enum ClassReloadingStrategy.BootstrapInjection.Disabled extends java.lang.Enum<ClassReloadingStrategy.BootstrapInjection.Disabled> implements ClassReloadingStrategy.BootstrapInjection
ClassReloadingStrategy.BootstrapInjection.Disabled, ClassReloadingStrategy.BootstrapInjection.Enabled| Enum Constant and Description |
|---|
INSTANCE
The singleton instance.
|
| Modifier and Type | Method and Description |
|---|---|
ClassInjector |
make(java.lang.instrument.Instrumentation instrumentation)
Creates a class injector to use.
|
static ClassReloadingStrategy.BootstrapInjection.Disabled |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ClassReloadingStrategy.BootstrapInjection.Disabled[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ClassReloadingStrategy.BootstrapInjection.Disabled INSTANCE
public static ClassReloadingStrategy.BootstrapInjection.Disabled[] values()
for (ClassReloadingStrategy.BootstrapInjection.Disabled c : ClassReloadingStrategy.BootstrapInjection.Disabled.values()) System.out.println(c);
public static ClassReloadingStrategy.BootstrapInjection.Disabled valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic ClassInjector make(java.lang.instrument.Instrumentation instrumentation)
make in interface ClassReloadingStrategy.BootstrapInjectioninstrumentation - The instrumentation of this instance.