Package net.bytebuddy.utility
Enum AsmClassWriter.Factory.Default
- java.lang.Object
-
- java.lang.Enum<AsmClassWriter.Factory.Default>
-
- net.bytebuddy.utility.AsmClassWriter.Factory.Default
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<AsmClassWriter.Factory.Default>
,AsmClassWriter.Factory
- Enclosing interface:
- AsmClassWriter.Factory
public static enum AsmClassWriter.Factory.Default extends java.lang.Enum<AsmClassWriter.Factory.Default> implements AsmClassWriter.Factory
A default class writer factory for ASM'sClassWriter
.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface net.bytebuddy.utility.AsmClassWriter.Factory
AsmClassWriter.Factory.Default, AsmClassWriter.Factory.Suppressing
-
-
Enum Constant Summary
Enum Constants Enum Constant Description INSTANCE
The singleton instance.
-
Constructor Summary
Constructors Modifier Constructor Description private
Default()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description AsmClassWriter
make(int flags)
Creates a new class writer for the given flags.AsmClassWriter
make(int flags, TypePool typePool)
Creates a new class writer for the given flags.AsmClassWriter
make(int flags, AsmClassReader classReader)
Creates a new class writer for the given flags, possibly based on a previous class file representation.AsmClassWriter
make(int flags, AsmClassReader classReader, TypePool typePool)
Creates a new class writer for the given flags, possibly based on a previous class file representation.static AsmClassWriter.Factory.Default
valueOf(java.lang.String name)
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.
-
-
-
Enum Constant Detail
-
INSTANCE
public static final AsmClassWriter.Factory.Default INSTANCE
The singleton instance.
-
-
Method Detail
-
values
public static AsmClassWriter.Factory.Default[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (AsmClassWriter.Factory.Default c : AsmClassWriter.Factory.Default.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AsmClassWriter.Factory.Default valueOf(java.lang.String name)
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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
make
public AsmClassWriter make(int flags)
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
public AsmClassWriter make(int flags, AsmClassReader classReader)
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
public AsmClassWriter make(int flags, TypePool typePool)
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.
-
make
public AsmClassWriter make(int flags, AsmClassReader classReader, TypePool typePool)
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.typePool
- A type pool to use for resolving type information for frame generation.- Returns:
- An appropriate class writer.
-
-