类 MethodrefTraveler
- java.lang.Object
-
- proguard.classfile.constant.visitor.MethodrefTraveler
-
- 所有已实现的接口:
ConstantVisitor
public class MethodrefTraveler extends java.lang.Object implements ConstantVisitor
ThisConstantVisitortravels from any method handle constants that it visits to their methodref constants, and applies a given constant visitor.
-
-
构造器概要
构造器 构造器 说明 MethodrefTraveler(ConstantVisitor methodrefConstantVisitor)Creates a new v that will delegate to the given constant visitor.
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 voidvisitAnyConstant(Clazz clazz, Constant constant)Visits any Constant instance.voidvisitMethodHandleConstant(Clazz clazz, MethodHandleConstant methodHandleConstant)-
从类继承的方法 java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
从接口继承的方法 proguard.classfile.constant.visitor.ConstantVisitor
visitAnyMethodrefConstant, visitAnyRefConstant, visitClassConstant, visitDoubleConstant, visitDynamicConstant, visitFieldrefConstant, visitFloatConstant, visitIntegerConstant, visitInterfaceMethodrefConstant, visitInvokeDynamicConstant, visitLongConstant, visitMethodrefConstant, visitMethodTypeConstant, visitModuleConstant, visitNameAndTypeConstant, visitPackageConstant, visitPrimitiveArrayConstant, visitStringConstant, visitUtf8Constant
-
-
-
-
构造器详细资料
-
MethodrefTraveler
public MethodrefTraveler(ConstantVisitor methodrefConstantVisitor)
Creates a new v that will delegate to the given constant visitor.
-
-
方法详细资料
-
visitAnyConstant
public void visitAnyConstant(Clazz clazz, Constant constant)
从接口复制的说明:ConstantVisitorVisits any Constant instance. The more specific default implementations of this interface delegate to this method.- 指定者:
visitAnyConstant在接口中ConstantVisitor
-
visitMethodHandleConstant
public void visitMethodHandleConstant(Clazz clazz, MethodHandleConstant methodHandleConstant)
- 指定者:
visitMethodHandleConstant在接口中ConstantVisitor
-
-