Package net.bytebuddy.utility
Enum AsmClassWriter.Factory.Default
- All Implemented Interfaces:
Serializable
,Comparable<AsmClassWriter.Factory.Default>
,java.lang.constant.Constable
,AsmClassWriter.Factory
- Enclosing interface:
AsmClassWriter.Factory
public static enum AsmClassWriter.Factory.Default
extends Enum<AsmClassWriter.Factory.Default>
implements AsmClassWriter.Factory
Default implementations for factories of
AsmClassWriter
s.-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionprotected static enum
An empty class reader for ASM that never unwraps an underlying implementation.static class
A class reader that does not retain a compatibleAsmClassWriter
implementation.Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
Nested classes/interfaces inherited from interface net.bytebuddy.utility.AsmClassWriter.Factory
AsmClassWriter.Factory.Default, AsmClassWriter.Factory.Suppressing
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionA factory for a class reader that uses ASM's internal implementation whenever possible.A factory that will always use ASM's internal implementation.A factory for a class writer that uses the class file API whenever possible.A factory that will always use the Class File API.Uses a processor as it is configured byOpenedClassReader.PROCESSOR_PROPERTY
, orASM_FIRST
if no implicit processor is defined. -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate static final AsmClassWriter.Factory
The implicit factory to use for writing class files.private static final Class
<?> Thecodes.rafael.asmjdkbridge.JdkClassReader
type ornull
if not available. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprivate static <T> T
doPrivileged
(PrivilegedAction<T> action) A proxy forjava.security.AccessController#doPrivileged
that is activated if available.make
(int flags) Creates a new class writer for the given flags.Creates a new class writer for the given flags.make
(int flags, AsmClassReader classReader) Creates a new class writer for the given flags, possibly based on a previous class file representation.Returns the enum constant of this type with the specified name.static AsmClassWriter.Factory.Default[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods inherited from class java.lang.Enum
clone, compareTo, describeConstable, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
Methods inherited from interface net.bytebuddy.utility.AsmClassWriter.Factory
make
-
Enum Constant Details
-
IMPLICIT
Uses a processor as it is configured byOpenedClassReader.PROCESSOR_PROPERTY
, orASM_FIRST
if no implicit processor is defined. -
ASM_FIRST
A factory for a class reader that uses ASM's internal implementation whenever possible. -
CLASS_FILE_API_FIRST
A factory for a class writer that uses the class file API whenever possible. -
ASM_ONLY
A factory that will always use ASM's internal implementation. -
CLASS_FILE_API_ONLY
A factory that will always use the Class File API.
-
-
Field Details
-
JDK_CLASS_READER
Thecodes.rafael.asmjdkbridge.JdkClassReader
type ornull
if not available. -
FACTORY
The implicit factory to use for writing class files.
-
-
Constructor Details
-
Default
private Default()
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
doPrivileged
A proxy forjava.security.AccessController#doPrivileged
that is activated if available.- Type Parameters:
T
- The type of the action's resolved value.- Parameters:
action
- The action to execute from a privileged context.- Returns:
- The action's resolved value.
-
make
Creates a new class writer for the given flags.- Specified by:
make
in interfaceAsmClassWriter.Factory
- Parameters:
flags
- The flags to consider while writing a class file.- Returns:
- An appropriate class writer.
-
make
Creates a new class writer for the given flags, possibly based on a previous class file representation.- Specified by:
make
in interfaceAsmClassWriter.Factory
- Parameters:
flags
- The flags to consider while writing a class file.classReader
- A class reader to consider for writing a class file.- Returns:
- An appropriate class writer.
-
make
Creates a new class writer for the given flags.- Specified by:
make
in interfaceAsmClassWriter.Factory
- Parameters:
flags
- The flags to consider while writing a class file.typePool
- A type pool to use for resolving type information for frame generation.- Returns:
- An appropriate class writer.
-