Uses of Interface
net.bytebuddy.dynamic.scaffold.InstrumentedType
Packages that use InstrumentedType
Package
Description
Byte Buddy is a library for creating Java classes at runtime of a Java program.
An agent builder is used to easily implement load-time class-transformations using a Java agent.
The ASM package contains classes that are meant for direct interaction with the ASM API.
This package contains helper types and implementations that are responsible for the actual writing of a byte array
representing a Java class.
All classes and types in this package are related to creating a
DynamicType
by
creating a subclass of a given type.The implementation package contains any logic for intercepting method calls.
Auxiliary types describe helper types that aid as a supplementary to a given
InstrumentedType
.This package contains annotations, types and classes that are responsible for binding a method to calling another
method by interpreting annotations that indicate how a method should be bound to another method.
-
Uses of InstrumentedType in net.bytebuddy
Methods in net.bytebuddy that return InstrumentedTypeModifier and TypeMethodDescriptionByteBuddy.EnumerationImplementation.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.ByteBuddy.RecordConstructorStrategy.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.ByteBuddy.RecordObjectMethod.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.Methods in net.bytebuddy with parameters of type InstrumentedTypeModifier and TypeMethodDescriptionByteBuddy.EnumerationImplementation.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.ByteBuddy.RecordConstructorStrategy.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.ByteBuddy.RecordObjectMethod.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type. -
Uses of InstrumentedType in net.bytebuddy.agent.builder
Methods in net.bytebuddy.agent.builder that return InstrumentedTypeModifier and TypeMethodDescriptionAgentBuilder.LambdaInstrumentationStrategy.LambdaInstanceFactory.BridgeMethodImplementation.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.AgentBuilder.LambdaInstrumentationStrategy.LambdaInstanceFactory.ConstructorImplementation.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.AgentBuilder.LambdaInstrumentationStrategy.LambdaInstanceFactory.FactoryImplementation.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.AgentBuilder.LambdaInstrumentationStrategy.LambdaInstanceFactory.LambdaMethodImplementation.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.AgentBuilder.LambdaInstrumentationStrategy.LambdaInstanceFactory.SerializationImplementation.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.Methods in net.bytebuddy.agent.builder with parameters of type InstrumentedTypeModifier and TypeMethodDescriptionAgentBuilder.LambdaInstrumentationStrategy.LambdaInstanceFactory.BridgeMethodImplementation.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.AgentBuilder.LambdaInstrumentationStrategy.LambdaInstanceFactory.ConstructorImplementation.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.AgentBuilder.LambdaInstrumentationStrategy.LambdaInstanceFactory.FactoryImplementation.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.AgentBuilder.LambdaInstrumentationStrategy.LambdaInstanceFactory.LambdaMethodImplementation.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.AgentBuilder.LambdaInstrumentationStrategy.LambdaInstanceFactory.SerializationImplementation.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type. -
Uses of InstrumentedType in net.bytebuddy.asm
Methods in net.bytebuddy.asm that return InstrumentedTypeModifier and TypeMethodDescriptionAdvice.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.Methods in net.bytebuddy.asm with parameters of type InstrumentedTypeModifier and TypeMethodDescriptionAdvice.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type. -
Uses of InstrumentedType in net.bytebuddy.dynamic.scaffold
Subinterfaces of InstrumentedType in net.bytebuddy.dynamic.scaffoldModifier and TypeInterfaceDescriptionstatic interface
Implementations represent anInstrumentedType
with a flexible name.Classes in net.bytebuddy.dynamic.scaffold that implement InstrumentedTypeModifier and TypeClassDescriptionstatic class
A default implementation of an instrumented type.static class
A frozen representation of an instrumented type of which the structure must not be modified.Methods in net.bytebuddy.dynamic.scaffold that return InstrumentedTypeModifier and TypeMethodDescriptionstatic InstrumentedType
InstrumentedType.Default.of
(String name, TypeDescription.Generic superClass, int modifiers) Creates a new instrumented type.static InstrumentedType
InstrumentedType.Default.of
(String name, TypeDescription.Generic superClass, ModifierContributor.ForType... modifierContributor) Creates a new instrumented type.InstrumentedType.Prepareable.NoOp.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.InstrumentedType.Prepareable.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.MethodRegistry.Handler.ForAbstractMethod.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.MethodRegistry.Handler.ForAnnotationValue.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.MethodRegistry.Handler.ForImplementation.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.MethodRegistry.Handler.ForVisibilityBridge.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.InstrumentedType.withAnnotations
(List<? extends AnnotationDescription> annotationDescriptions) Creates a new instrumented type with the given annotations.InstrumentedType.withAnonymousClass
(boolean anonymousClass) Creates a new instrumented type that indicates that it is defined as an anonymous class.InstrumentedType.withAuxiliaryField
(FieldDescription.Token token, Object value) Creates a new instrumented type that includes a new field.InstrumentedType.withDeclaredTypes
(TypeList declaredTypes) Creates a new instrumented type that indicates that it declared the supplied types.InstrumentedType.withDeclaringType
(TypeDescription declaringType) Creates a new instrumented type that is declared by the supplied type.InstrumentedType.withEnclosingMethod
(MethodDescription.InDefinedShape enclosingMethod) Creates a new instrumented type with the supplied enclosing method.InstrumentedType.withEnclosingType
(TypeDescription enclosingType) Creates a new instrumented type with the supplied enclosing type.InstrumentedType.withField
(FieldDescription.Token token) Creates a new instrumented type that includes a new field.InstrumentedType.withInitializer
(ByteCodeAppender byteCodeAppender) Creates a new instrumented type that executes the given initializer in the instrumented type's type initializer.InstrumentedType.withInitializer
(LoadedTypeInitializer loadedTypeInitializer) Creates a new instrumented type that includes the givenLoadedTypeInitializer
.InstrumentedType.withInterfaces
(TypeList.Generic interfaceTypes) Creates a new instrumented type with the given interfaces implemented.InstrumentedType.withLocalClass
(boolean localClass) Creates a new instrumented type that indicates that is defined as a local class.InstrumentedType.withMethod
(MethodDescription.Token token) Creates a new instrumented type that includes a new method or constructor.InstrumentedType.withModifiers
(int modifiers) Creates a new instrumented type with changed modifiers.InstrumentedType.withNestHost
(TypeDescription nestHost) Creates a new instrumented type with the supplied nest host.InstrumentedType.withNestMembers
(TypeList nestMembers) Creates a new instrumented types with the supplied nest members added to this instrumented type.InstrumentedType.withPermittedSubclasses
(TypeList permittedSubclasses) Creates a new instrumented type that includes the supplied permitted subclasses or unseals the type.InstrumentedType.withRecord
(boolean record) Creates a new instrumented type that indicates that it defined as a record type.InstrumentedType.withRecordComponent
(RecordComponentDescription.Token token) Creates a new instrumented type that includes a new record component.InstrumentedType.withTypeVariable
(TypeVariableToken typeVariable) Creates a new instrumented type with the given type variable defined.Methods in net.bytebuddy.dynamic.scaffold with parameters of type InstrumentedTypeModifier and TypeMethodDescriptionInstrumentedType.Prepareable.NoOp.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.InstrumentedType.Prepareable.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.MethodRegistry.Default.prepare
(InstrumentedType instrumentedType, MethodGraph.Compiler methodGraphCompiler, TypeValidation typeValidation, VisibilityBridgeStrategy visibilityBridgeStrategy, LatentMatcher<? super MethodDescription> ignoredMethods) Prepares this method registry.MethodRegistry.Handler.ForAbstractMethod.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.MethodRegistry.Handler.ForAnnotationValue.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.MethodRegistry.Handler.ForImplementation.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.MethodRegistry.Handler.ForVisibilityBridge.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.MethodRegistry.prepare
(InstrumentedType instrumentedType, MethodGraph.Compiler methodGraphCompiler, TypeValidation typeValidation, VisibilityBridgeStrategy visibilityBridgeStrategy, LatentMatcher<? super MethodDescription> ignoredMethods) Prepares this method registry. -
Uses of InstrumentedType in net.bytebuddy.dynamic.scaffold.subclass
Methods in net.bytebuddy.dynamic.scaffold.subclass that return InstrumentedTypeModifier and TypeMethodDescriptionprivate InstrumentedType
SubclassDynamicTypeBuilder.applyConstructorStrategy
(InstrumentedType instrumentedType) Applies this builder's constructor strategy to the given instrumented type.Methods in net.bytebuddy.dynamic.scaffold.subclass with parameters of type InstrumentedTypeModifier and TypeMethodDescriptionprivate InstrumentedType
SubclassDynamicTypeBuilder.applyConstructorStrategy
(InstrumentedType instrumentedType) Applies this builder's constructor strategy to the given instrumented type. -
Uses of InstrumentedType in net.bytebuddy.implementation
Methods in net.bytebuddy.implementation that return InstrumentedTypeModifier and TypeMethodDescriptionDefaultMethodCall.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.EqualsMethod.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.ExceptionMethod.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.FieldAccessor.ForImplicitProperty.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.FieldAccessor.ForSetter.OfConstantValue.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.FieldAccessor.ForSetter.OfDefaultValue.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.FieldAccessor.ForSetter.OfFieldValue.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.FieldAccessor.ForSetter.OfParameterValue.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.FieldAccessor.ForSetter.OfReferenceValue.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.FixedValue.ForArgument.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.FixedValue.ForConstantValue.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.FixedValue.ForNullValue.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.FixedValue.ForOriginType.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.FixedValue.ForThisValue.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.FixedValue.ForValue.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.HashCodeMethod.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.Implementation.Compound.Composable.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.Implementation.Compound.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.Implementation.Simple.ForDispatcher.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.Implementation.Simple.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.InvocationHandlerAdapter.ForField.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.InvocationHandlerAdapter.ForInstance.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.InvokeDynamic.AbstractDelegator.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.InvokeDynamic.InvocationProvider.ArgumentProvider.ConstantPoolWrapper.WrappingArgumentProvider.prepare
(InstrumentedType instrumentedType) Prepares the instrumented type.InvokeDynamic.InvocationProvider.ArgumentProvider.ForBooleanConstant.prepare
(InstrumentedType instrumentedType) Prepares the instrumented type.InvokeDynamic.InvocationProvider.ArgumentProvider.ForByteConstant.prepare
(InstrumentedType instrumentedType) Prepares the instrumented type.InvokeDynamic.InvocationProvider.ArgumentProvider.ForCharacterConstant.prepare
(InstrumentedType instrumentedType) Prepares the instrumented type.InvokeDynamic.InvocationProvider.ArgumentProvider.ForClassConstant.prepare
(InstrumentedType instrumentedType) Prepares the instrumented type.InvokeDynamic.InvocationProvider.ArgumentProvider.ForDoubleConstant.prepare
(InstrumentedType instrumentedType) Prepares the instrumented type.InvokeDynamic.InvocationProvider.ArgumentProvider.ForEnumerationValue.prepare
(InstrumentedType instrumentedType) Prepares the instrumented type.InvokeDynamic.InvocationProvider.ArgumentProvider.ForField.prepare
(InstrumentedType instrumentedType) Prepares the instrumented type.InvokeDynamic.InvocationProvider.ArgumentProvider.ForFloatConstant.prepare
(InstrumentedType instrumentedType) Prepares the instrumented type.InvokeDynamic.InvocationProvider.ArgumentProvider.ForInstance.prepare
(InstrumentedType instrumentedType) Prepares the instrumented type.InvokeDynamic.InvocationProvider.ArgumentProvider.ForIntegerConstant.prepare
(InstrumentedType instrumentedType) Prepares the instrumented type.InvokeDynamic.InvocationProvider.ArgumentProvider.ForInterceptedMethodInstanceAndParameters.prepare
(InstrumentedType instrumentedType) Prepares the instrumented type.InvokeDynamic.InvocationProvider.ArgumentProvider.ForInterceptedMethodParameters.prepare
(InstrumentedType instrumentedType) Prepares the instrumented type.InvokeDynamic.InvocationProvider.ArgumentProvider.ForJavaConstant.prepare
(InstrumentedType instrumentedType) Prepares the instrumented type.InvokeDynamic.InvocationProvider.ArgumentProvider.ForLongConstant.prepare
(InstrumentedType instrumentedType) Prepares the instrumented type.InvokeDynamic.InvocationProvider.ArgumentProvider.ForMethodParameter.prepare
(InstrumentedType instrumentedType) Prepares the instrumented type.InvokeDynamic.InvocationProvider.ArgumentProvider.ForNullValue.prepare
(InstrumentedType instrumentedType) Prepares the instrumented type.InvokeDynamic.InvocationProvider.ArgumentProvider.ForShortConstant.prepare
(InstrumentedType instrumentedType) Prepares the instrumented type.InvokeDynamic.InvocationProvider.ArgumentProvider.ForStringConstant.prepare
(InstrumentedType instrumentedType) Prepares the instrumented type.InvokeDynamic.InvocationProvider.ArgumentProvider.ForThisInstance.prepare
(InstrumentedType instrumentedType) Prepares the instrumented type.InvokeDynamic.InvocationProvider.ArgumentProvider.prepare
(InstrumentedType instrumentedType) Prepares the instrumented type.InvokeDynamic.InvocationProvider.Default.prepare
(InstrumentedType instrumentedType) Prepares the instrumented type.InvokeDynamic.InvocationProvider.prepare
(InstrumentedType instrumentedType) Prepares the instrumented type.InvokeDynamic.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.MethodCall.ArgumentLoader.ForField.Factory.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.MethodCall.ArgumentLoader.ForInstance.Factory.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.MethodCall.ArgumentLoader.ForInstrumentedType.Factory.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.MethodCall.ArgumentLoader.ForMethodCall.Factory.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.MethodCall.ArgumentLoader.ForMethodParameter.Factory.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.MethodCall.ArgumentLoader.ForMethodParameter.OfInstrumentedMethod.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.MethodCall.ArgumentLoader.ForMethodParameterArray.ForInstrumentedMethod.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.MethodCall.ArgumentLoader.ForMethodParameterArrayElement.OfInvokedMethod.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.MethodCall.ArgumentLoader.ForMethodParameterArrayElement.OfParameter.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.MethodCall.ArgumentLoader.ForNullConstant.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.MethodCall.ArgumentLoader.ForStackManipulation.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.MethodCall.ArgumentLoader.ForThisReference.Factory.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.MethodCall.FieldSetting.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.MethodCall.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.MethodCall.TargetHandler.ForConstructingInvocation.Factory.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.MethodCall.TargetHandler.ForField.Factory.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.MethodCall.TargetHandler.ForMethodCall.Factory.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.MethodCall.TargetHandler.ForMethodParameter.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.MethodCall.TargetHandler.ForSelfOrStaticInvocation.Factory.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.MethodCall.TargetHandler.ForValue.Factory.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.MethodCall.TargetHandler.Simple.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.MethodDelegation.ImplementationDelegate.ForConstruction.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.MethodDelegation.ImplementationDelegate.ForField.WithInstance.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.MethodDelegation.ImplementationDelegate.ForField.WithLookup.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.MethodDelegation.ImplementationDelegate.ForMethodReturn.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.MethodDelegation.ImplementationDelegate.ForStaticMethod.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.MethodDelegation.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.StubMethod.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.SuperMethodCall.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.SuperMethodCall.WithoutReturn.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.ToStringMethod.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.Methods in net.bytebuddy.implementation with parameters of type InstrumentedTypeModifier and TypeMethodDescriptionDefaultMethodCall.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.EqualsMethod.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.ExceptionMethod.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.FieldAccessor.ForImplicitProperty.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.FieldAccessor.ForSetter.OfConstantValue.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.FieldAccessor.ForSetter.OfDefaultValue.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.FieldAccessor.ForSetter.OfFieldValue.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.FieldAccessor.ForSetter.OfParameterValue.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.FieldAccessor.ForSetter.OfReferenceValue.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.FixedValue.ForArgument.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.FixedValue.ForConstantValue.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.FixedValue.ForNullValue.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.FixedValue.ForOriginType.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.FixedValue.ForThisValue.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.FixedValue.ForValue.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.HashCodeMethod.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.Implementation.Compound.Composable.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.Implementation.Compound.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.Implementation.Simple.ForDispatcher.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.Implementation.Simple.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.InvocationHandlerAdapter.ForField.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.InvocationHandlerAdapter.ForInstance.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.InvokeDynamic.AbstractDelegator.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.InvokeDynamic.InvocationProvider.ArgumentProvider.ConstantPoolWrapper.WrappingArgumentProvider.prepare
(InstrumentedType instrumentedType) Prepares the instrumented type.InvokeDynamic.InvocationProvider.ArgumentProvider.ForBooleanConstant.prepare
(InstrumentedType instrumentedType) Prepares the instrumented type.InvokeDynamic.InvocationProvider.ArgumentProvider.ForByteConstant.prepare
(InstrumentedType instrumentedType) Prepares the instrumented type.InvokeDynamic.InvocationProvider.ArgumentProvider.ForCharacterConstant.prepare
(InstrumentedType instrumentedType) Prepares the instrumented type.InvokeDynamic.InvocationProvider.ArgumentProvider.ForClassConstant.prepare
(InstrumentedType instrumentedType) Prepares the instrumented type.InvokeDynamic.InvocationProvider.ArgumentProvider.ForDoubleConstant.prepare
(InstrumentedType instrumentedType) Prepares the instrumented type.InvokeDynamic.InvocationProvider.ArgumentProvider.ForEnumerationValue.prepare
(InstrumentedType instrumentedType) Prepares the instrumented type.InvokeDynamic.InvocationProvider.ArgumentProvider.ForField.prepare
(InstrumentedType instrumentedType) Prepares the instrumented type.InvokeDynamic.InvocationProvider.ArgumentProvider.ForFloatConstant.prepare
(InstrumentedType instrumentedType) Prepares the instrumented type.InvokeDynamic.InvocationProvider.ArgumentProvider.ForInstance.prepare
(InstrumentedType instrumentedType) Prepares the instrumented type.InvokeDynamic.InvocationProvider.ArgumentProvider.ForIntegerConstant.prepare
(InstrumentedType instrumentedType) Prepares the instrumented type.InvokeDynamic.InvocationProvider.ArgumentProvider.ForInterceptedMethodInstanceAndParameters.prepare
(InstrumentedType instrumentedType) Prepares the instrumented type.InvokeDynamic.InvocationProvider.ArgumentProvider.ForInterceptedMethodParameters.prepare
(InstrumentedType instrumentedType) Prepares the instrumented type.InvokeDynamic.InvocationProvider.ArgumentProvider.ForJavaConstant.prepare
(InstrumentedType instrumentedType) Prepares the instrumented type.InvokeDynamic.InvocationProvider.ArgumentProvider.ForLongConstant.prepare
(InstrumentedType instrumentedType) Prepares the instrumented type.InvokeDynamic.InvocationProvider.ArgumentProvider.ForMethodParameter.prepare
(InstrumentedType instrumentedType) Prepares the instrumented type.InvokeDynamic.InvocationProvider.ArgumentProvider.ForNullValue.prepare
(InstrumentedType instrumentedType) Prepares the instrumented type.InvokeDynamic.InvocationProvider.ArgumentProvider.ForShortConstant.prepare
(InstrumentedType instrumentedType) Prepares the instrumented type.InvokeDynamic.InvocationProvider.ArgumentProvider.ForStringConstant.prepare
(InstrumentedType instrumentedType) Prepares the instrumented type.InvokeDynamic.InvocationProvider.ArgumentProvider.ForThisInstance.prepare
(InstrumentedType instrumentedType) Prepares the instrumented type.InvokeDynamic.InvocationProvider.ArgumentProvider.prepare
(InstrumentedType instrumentedType) Prepares the instrumented type.InvokeDynamic.InvocationProvider.Default.prepare
(InstrumentedType instrumentedType) Prepares the instrumented type.InvokeDynamic.InvocationProvider.prepare
(InstrumentedType instrumentedType) Prepares the instrumented type.InvokeDynamic.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.MethodCall.ArgumentLoader.ForField.Factory.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.MethodCall.ArgumentLoader.ForInstance.Factory.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.MethodCall.ArgumentLoader.ForInstrumentedType.Factory.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.MethodCall.ArgumentLoader.ForMethodCall.Factory.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.MethodCall.ArgumentLoader.ForMethodParameter.Factory.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.MethodCall.ArgumentLoader.ForMethodParameter.OfInstrumentedMethod.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.MethodCall.ArgumentLoader.ForMethodParameterArray.ForInstrumentedMethod.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.MethodCall.ArgumentLoader.ForMethodParameterArrayElement.OfInvokedMethod.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.MethodCall.ArgumentLoader.ForMethodParameterArrayElement.OfParameter.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.MethodCall.ArgumentLoader.ForNullConstant.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.MethodCall.ArgumentLoader.ForStackManipulation.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.MethodCall.ArgumentLoader.ForThisReference.Factory.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.MethodCall.FieldSetting.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.MethodCall.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.MethodCall.TargetHandler.ForConstructingInvocation.Factory.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.MethodCall.TargetHandler.ForField.Factory.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.MethodCall.TargetHandler.ForMethodCall.Factory.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.MethodCall.TargetHandler.ForMethodParameter.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.MethodCall.TargetHandler.ForSelfOrStaticInvocation.Factory.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.MethodCall.TargetHandler.ForValue.Factory.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.MethodCall.TargetHandler.Simple.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.MethodDelegation.ImplementationDelegate.ForConstruction.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.MethodDelegation.ImplementationDelegate.ForField.WithInstance.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.MethodDelegation.ImplementationDelegate.ForField.WithLookup.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.MethodDelegation.ImplementationDelegate.ForMethodReturn.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.MethodDelegation.ImplementationDelegate.ForStaticMethod.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.MethodDelegation.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.StubMethod.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.SuperMethodCall.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.SuperMethodCall.WithoutReturn.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.ToStringMethod.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type. -
Uses of InstrumentedType in net.bytebuddy.implementation.auxiliary
Methods in net.bytebuddy.implementation.auxiliary that return InstrumentedTypeModifier and TypeMethodDescriptionMethodCallProxy.ConstructorCall.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.MethodCallProxy.MethodCall.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.TypeProxy.MethodCall.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.TypeProxy.SilentConstruction.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.Methods in net.bytebuddy.implementation.auxiliary with parameters of type InstrumentedTypeModifier and TypeMethodDescriptionMethodCallProxy.ConstructorCall.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.MethodCallProxy.MethodCall.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.TypeProxy.MethodCall.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.TypeProxy.SilentConstruction.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type. -
Uses of InstrumentedType in net.bytebuddy.implementation.bind.annotation
Methods in net.bytebuddy.implementation.bind.annotation that return InstrumentedTypeModifier and TypeMethodDescriptionFieldProxy.Binder.FieldGetter.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.FieldProxy.Binder.FieldSetter.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.FieldProxy.Binder.InstanceFieldConstructor.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.FieldProxy.Binder.StaticFieldConstructor.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.Morph.Binder.RedirectionProxy.InstanceFieldConstructor.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.Morph.Binder.RedirectionProxy.MethodCall.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.Morph.Binder.RedirectionProxy.StaticFieldConstructor.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.Pipe.Binder.RedirectionProxy.ConstructorCall.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.Pipe.Binder.RedirectionProxy.MethodCall.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.Methods in net.bytebuddy.implementation.bind.annotation with parameters of type InstrumentedTypeModifier and TypeMethodDescriptionFieldProxy.Binder.FieldGetter.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.FieldProxy.Binder.FieldSetter.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.FieldProxy.Binder.InstanceFieldConstructor.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.FieldProxy.Binder.StaticFieldConstructor.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.Morph.Binder.RedirectionProxy.InstanceFieldConstructor.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.Morph.Binder.RedirectionProxy.MethodCall.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.Morph.Binder.RedirectionProxy.StaticFieldConstructor.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.Pipe.Binder.RedirectionProxy.ConstructorCall.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.Pipe.Binder.RedirectionProxy.MethodCall.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.