Class ArgumentTypeResolver.ParameterIndexToken

java.lang.Object
net.bytebuddy.implementation.bind.ArgumentTypeResolver.ParameterIndexToken
Enclosing class:
ArgumentTypeResolver

public static class ArgumentTypeResolver.ParameterIndexToken extends Object
This token is used to mark a one-to-one binding of a source method parameter to a target method parameter.
See Also:
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    private final int
    The parameter index that is represented by this token.
  • Constructor Summary

    Constructors
    Constructor
    Description
    ParameterIndexToken(int parameterIndex)
    Create a parameter index token for a given parameter of the source method.
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    equals(Object other)
     
    int
     

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • parameterIndex

      private final int parameterIndex
      The parameter index that is represented by this token.
  • Constructor Details

    • ParameterIndexToken

      public ParameterIndexToken(int parameterIndex)
      Create a parameter index token for a given parameter of the source method.
      Parameters:
      parameterIndex - The parameter index of the source method which is mapped to a target method parameter.
  • Method Details