Uses of Enum Class
net.bytebuddy.utility.JavaConstant.MethodHandle.HandleType
Packages that use JavaConstant.MethodHandle.HandleType
Package
Description
An agent builder is used to easily implement load-time class-transformations using a Java agent.
This package contains utility classes for common use within any Byte Buddy logic.
-
Uses of JavaConstant.MethodHandle.HandleType in net.bytebuddy.agent.builder
Methods in net.bytebuddy.agent.builder with parameters of type JavaConstant.MethodHandle.HandleTypeModifier and TypeMethodDescriptionprotected static ByteCodeAppender
AgentBuilder.LambdaInstrumentationStrategy.LambdaInstanceFactory.LambdaMethodImplementation.Appender.of
(MethodDescription targetMethod, JavaConstant.MethodType specializedLambdaMethod, List<FieldDescription.InDefinedShape> declaredFields, JavaConstant.MethodHandle.HandleType handleType, TypeDescription targetType) Resolves an appropriate appender for this lambda expression. -
Uses of JavaConstant.MethodHandle.HandleType in net.bytebuddy.utility
Fields in net.bytebuddy.utility declared as JavaConstant.MethodHandle.HandleTypeModifier and TypeFieldDescriptionprivate final JavaConstant.MethodHandle.HandleType
JavaConstant.MethodHandle.handleType
The handle type that is represented by this instance.Methods in net.bytebuddy.utility that return JavaConstant.MethodHandle.HandleTypeModifier and TypeMethodDescriptionJavaConstant.MethodHandle.getHandleType()
Returns the handle type represented by this instance.protected static JavaConstant.MethodHandle.HandleType
JavaConstant.MethodHandle.HandleType.of
(int identifier) Extracts a handle type for the given identifier.protected static JavaConstant.MethodHandle.HandleType
JavaConstant.MethodHandle.HandleType.of
(MethodDescription.InDefinedShape methodDescription) Extracts a handle type for invoking the given method.protected static JavaConstant.MethodHandle.HandleType
JavaConstant.MethodHandle.HandleType.ofGetter
(FieldDescription.InDefinedShape fieldDescription) Extracts a handle type for a getter of the given field.protected static JavaConstant.MethodHandle.HandleType
JavaConstant.MethodHandle.HandleType.ofSetter
(FieldDescription.InDefinedShape fieldDescription) Extracts a handle type for a setter of the given field.protected static JavaConstant.MethodHandle.HandleType
JavaConstant.MethodHandle.HandleType.ofSpecial
(MethodDescription.InDefinedShape methodDescription) Extracts a handle type for invoking the given method via invokespecial.Returns the enum constant of this class with the specified name.static JavaConstant.MethodHandle.HandleType[]
JavaConstant.MethodHandle.HandleType.values()
Returns an array containing the constants of this enum class, in the order they are declared.Constructors in net.bytebuddy.utility with parameters of type JavaConstant.MethodHandle.HandleTypeModifierConstructorDescriptionprotected
MethodHandle
(JavaConstant.MethodHandle.HandleType handleType, TypeDescription ownerType, String name, TypeDescription returnType, List<? extends TypeDescription> parameterTypes) Creates a method handle representation.