Enum Class MethodCallProxy.ConstructorCall

java.lang.Object
java.lang.Enum<MethodCallProxy.ConstructorCall>
net.bytebuddy.implementation.auxiliary.MethodCallProxy.ConstructorCall
All Implemented Interfaces:
Serializable, Comparable<MethodCallProxy.ConstructorCall>, Constable, InstrumentedType.Prepareable, Implementation
Enclosing class:
MethodCallProxy

protected static enum MethodCallProxy.ConstructorCall extends Enum<MethodCallProxy.ConstructorCall> implements Implementation
An implementation for a constructor of a MethodCallProxy.
  • Enum Constant Details

  • Field Details

    • objectTypeDefaultConstructor

      private final MethodDescription objectTypeDefaultConstructor
      A reference of the Object type default constructor.
  • Constructor Details

    • ConstructorCall

      private ConstructorCall()
      Creates the constructor call singleton.
  • Method Details

    • values

      public static MethodCallProxy.ConstructorCall[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static MethodCallProxy.ConstructorCall valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null
    • prepare

      public InstrumentedType prepare(InstrumentedType instrumentedType)
      Prepares a given instrumented type.
      Specified by:
      prepare in interface InstrumentedType.Prepareable
      Parameters:
      instrumentedType - The instrumented type in its current form.
      Returns:
      The prepared instrumented type.
    • appender

      public ByteCodeAppender appender(Implementation.Target implementationTarget)
      Creates a byte code appender that determines the implementation of the instrumented type's methods.
      Specified by:
      appender in interface Implementation
      Parameters:
      implementationTarget - The target of the current implementation.
      Returns:
      A byte code appender for implementing methods delegated to this implementation. This byte code appender is also responsible for handling methods that were added by this implementation on the call to InstrumentedType.Prepareable.prepare(InstrumentedType).