Enum TypeProxy.SilentConstruction

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

protected static enum TypeProxy.SilentConstruction extends Enum<TypeProxy.SilentConstruction> implements Implementation
An implementation of a silent construction of a given type by using the non-standardized ReflectionFactory. This way, a constructor invocation can be avoided. However, this comes at the cost of potentially breaking compatibility as the reflection factory is not standardized.
  • Enum Constant Details

  • Constructor Details

    • SilentConstruction

      private SilentConstruction()
  • Method Details

    • values

      public static TypeProxy.SilentConstruction[] 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 TypeProxy.SilentConstruction 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
    • 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).