Uses of Class
org.objectweb.asm.commons.Method
-
Packages that use Method Package Description org.objectweb.asm.commons Provides some useful class and method adapters. -
-
Uses of Method in org.objectweb.asm.commons
Fields in org.objectweb.asm.commons declared as Method Modifier and Type Field Description private static MethodGeneratorAdapter. BOOLEAN_VALUEprivate static MethodGeneratorAdapter. CHAR_VALUEprivate static MethodGeneratorAdapter. DOUBLE_VALUEprivate static MethodGeneratorAdapter. FLOAT_VALUEprivate static MethodGeneratorAdapter. INT_VALUEprivate static MethodGeneratorAdapter. LONG_VALUEMethods in org.objectweb.asm.commons that return Method Modifier and Type Method Description static MethodMethod. getMethod(java.lang.reflect.Constructor<?> constructor)Creates a newMethod.static MethodMethod. getMethod(java.lang.reflect.Method method)Creates a newMethod.static MethodMethod. getMethod(java.lang.String method)Returns aMethodcorresponding to the given Java method declaration.static MethodMethod. getMethod(java.lang.String method, boolean defaultPackage)Returns aMethodcorresponding to the given Java method declaration.Methods in org.objectweb.asm.commons with parameters of type Method Modifier and Type Method Description voidGeneratorAdapter. invokeConstructor(Type type, Method method)Generates the instruction to invoke a constructor.private voidGeneratorAdapter. invokeInsn(int opcode, Type type, Method method, boolean isInterface)Generates an invoke method instruction.voidGeneratorAdapter. invokeInterface(Type owner, Method method)Generates the instruction to invoke an interface method.voidGeneratorAdapter. invokeStatic(Type owner, Method method)Generates the instruction to invoke a static method.voidGeneratorAdapter. invokeVirtual(Type owner, Method method)Generates the instruction to invoke a normal method.Constructors in org.objectweb.asm.commons with parameters of type Method Constructor Description GeneratorAdapter(int access, Method method, java.lang.String signature, Type[] exceptions, ClassVisitor classVisitor)Constructs a newGeneratorAdapter.GeneratorAdapter(int access, Method method, MethodVisitor methodVisitor)Constructs a newGeneratorAdapter.
-