Enum AsmClassWriter.Factory.Default

java.lang.Object
java.lang.Enum<AsmClassWriter.Factory.Default>
net.bytebuddy.utility.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 AsmClassWriters.
  • Enum Constant Details

  • Field Details

    • JDK_CLASS_READER

      @MaybeNull private static final Class<?> JDK_CLASS_READER
      The codes.rafael.asmjdkbridge.JdkClassReader type or null if not available.
    • FACTORY

      private static final AsmClassWriter.Factory FACTORY
      The implicit factory to use for writing class files.
  • Constructor Details

    • Default

      private Default()
  • Method Details

    • values

      public static AsmClassWriter.Factory.Default[] 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

      public static AsmClassWriter.Factory.Default valueOf(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:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null
    • doPrivileged

      @MaybeNull @Enhance private static <T> T doPrivileged(PrivilegedAction<T> action)
      A proxy for java.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

      public AsmClassWriter make(int flags)
      Creates a new class writer for the given flags.
      Specified by:
      make in interface AsmClassWriter.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 interface AsmClassWriter.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 interface AsmClassWriter.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.