Class Advice.OffsetMapping.ForDynamicConstant

java.lang.Object
net.bytebuddy.asm.Advice.OffsetMapping.ForDynamicConstant
All Implemented Interfaces:
Advice.OffsetMapping
Enclosing interface:
Advice.OffsetMapping

@Enhance public static class Advice.OffsetMapping.ForDynamicConstant extends Object implements Advice.OffsetMapping
An offset mapping for a dynamic constant.
  • Field Details

    • name

      private final String name
      The name of the dynamic constant as it is presented to the bootstrap method.
    • typeDescription

      private final TypeDescription typeDescription
      The type of the dynamic constant.
    • bootstrapType

      private final JavaConstant.MethodHandle.HandleType bootstrapType
      The type of the bootstrap method.
    • bootstrapOwner

      private final TypeDescription bootstrapOwner
      The type that declares the bootstrap method, or void if the instrumented type.
    • bootstrapName

      private final String bootstrapName
      The name of the bootstrap method.
    • bootstrapReturnType

      private final TypeDescription bootstrapReturnType
      The return type of the boostrap method.
    • bootstrapParameterTypes

      private final List<? extends TypeDescription> bootstrapParameterTypes
      The parameter types of the boostrap method.
    • arguments

      private final List<JavaConstant> arguments
      The constant arguments that are provided to the boostrap method.
    • invokedynamic

      private final boolean invokedynamic
      true if the dynamic constant should be resolved using invokedynamic.
  • Constructor Details

  • Method Details

    • resolve

      public Advice.OffsetMapping.Target resolve(TypeDescription instrumentedType, MethodDescription instrumentedMethod, Assigner assigner, Advice.ArgumentHandler argumentHandler, Advice.OffsetMapping.Sort sort)
      Resolves an offset mapping to a given target offset.
      Specified by:
      resolve in interface Advice.OffsetMapping
      Parameters:
      instrumentedType - The instrumented type.
      instrumentedMethod - The instrumented method for which the mapping is to be resolved.
      assigner - The assigner to use.
      argumentHandler - The argument handler to use for resolving offsets of the local variable array of the instrumented method.
      sort - The sort of the advice method being resolved.
      Returns:
      A suitable target mapping.