Package net.bytebuddy.agent.builder
Enum Class AgentBuilder.LambdaInstrumentationStrategy.LambdaInstanceFactory.ConstructorImplementation
java.lang.Object
java.lang.Enum<AgentBuilder.LambdaInstrumentationStrategy.LambdaInstanceFactory.ConstructorImplementation>
net.bytebuddy.agent.builder.AgentBuilder.LambdaInstrumentationStrategy.LambdaInstanceFactory.ConstructorImplementation
- All Implemented Interfaces:
Serializable
,Comparable<AgentBuilder.LambdaInstrumentationStrategy.LambdaInstanceFactory.ConstructorImplementation>
,Constable
,InstrumentedType.Prepareable
,Implementation
- Enclosing class:
AgentBuilder.LambdaInstrumentationStrategy.LambdaInstanceFactory
protected static enum AgentBuilder.LambdaInstrumentationStrategy.LambdaInstanceFactory.ConstructorImplementation
extends Enum<AgentBuilder.LambdaInstrumentationStrategy.LambdaInstanceFactory.ConstructorImplementation>
implements Implementation
Implements a lambda class's executing transformer.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionprotected static class
An appender to implement the executing transformer.Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
Nested classes/interfaces inherited from interface net.bytebuddy.implementation.Implementation
Implementation.Composable, Implementation.Compound, Implementation.Context, Implementation.Simple, Implementation.SpecialMethodInvocation, Implementation.Target
Nested classes/interfaces inherited from interface net.bytebuddy.dynamic.scaffold.InstrumentedType.Prepareable
InstrumentedType.Prepareable.NoOp
-
Enum Constant Summary
Enum Constants -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final MethodDescription.InDefinedShape
A reference to theObject
class's default executing transformer. -
Constructor Summary
ConstructorsModifierConstructorDescriptionprivate
Creates a new executing transformer implementation. -
Method Summary
Modifier and TypeMethodDescriptionappender
(Implementation.Target implementationTarget) Creates a byte code appender that determines the implementation of the instrumented type's methods.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.Returns the enum constant of this class with the specified name.values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
INSTANCE
public static final AgentBuilder.LambdaInstrumentationStrategy.LambdaInstanceFactory.ConstructorImplementation INSTANCEThe singleton instance.
-
-
Field Details
-
objectConstructor
A reference to theObject
class's default executing transformer.
-
-
Constructor Details
-
ConstructorImplementation
private ConstructorImplementation()Creates a new executing transformer implementation.
-
-
Method Details
-
values
public static AgentBuilder.LambdaInstrumentationStrategy.LambdaInstanceFactory.ConstructorImplementation[] 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 AgentBuilder.LambdaInstrumentationStrategy.LambdaInstanceFactory.ConstructorImplementation 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 nameNullPointerException
- if the argument is null
-
appender
Creates a byte code appender that determines the implementation of the instrumented type's methods.- Specified by:
appender
in interfaceImplementation
- 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)
.
-
prepare
Prepares a given instrumented type.- Specified by:
prepare
in interfaceInstrumentedType.Prepareable
- Parameters:
instrumentedType
- The instrumented type in its current form.- Returns:
- The prepared instrumented type.
-