public static enum ClassLoaderDecorator.Factory.NoOp extends Enum<ClassLoaderDecorator.Factory.NoOp> implements ClassLoaderDecorator.Factory
ClassLoaderDecorator.Factory.NoOp| Enum Constant and Description |
|---|
INSTANCE
The singleton instance of this no-operation factory.
|
| Modifier and Type | Method and Description |
|---|---|
ClassLoaderDecorator |
make(ClassLoader classLoader,
Map<String,byte[]> typeDefinitions)
Creates a class loader decorator for the given class loader and type definitions.
|
static ClassLoaderDecorator.Factory.NoOp |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ClassLoaderDecorator.Factory.NoOp[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ClassLoaderDecorator.Factory.NoOp INSTANCE
public static ClassLoaderDecorator.Factory.NoOp[] values()
for (ClassLoaderDecorator.Factory.NoOp c : ClassLoaderDecorator.Factory.NoOp.values()) System.out.println(c);
public static ClassLoaderDecorator.Factory.NoOp 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 nullpublic ClassLoaderDecorator make(@MaybeNull ClassLoader classLoader, Map<String,byte[]> typeDefinitions)
make in interface ClassLoaderDecorator.FactoryclassLoader - The class loader to decorate or null if the bootstrap class loader is used.typeDefinitions - A map of type names to their binary representations for types being loaded.Copyright © 2014–2025. All rights reserved.