Uses of Class
org.eclipse.persistence.internal.libraries.asm.tree.AbstractInsnNode
Packages that use AbstractInsnNode
-
Uses of AbstractInsnNode in org.eclipse.persistence.internal.libraries.asm.tree
Subclasses of AbstractInsnNode in org.eclipse.persistence.internal.libraries.asm.treeModifier and TypeClassDescriptionclassA node that represents a field instruction.classA node that represents a stack map frame.classA node that represents an IINC instruction.classA node that represents a zero operand instruction.classA node that represents an instruction with a single int operand.classA node that represents an invokedynamic instruction.classA node that represents a jump instruction.classAnAbstractInsnNodethat encapsulates aLabel.classA node that represents an LDC instruction.classA node that represents a line number declaration.classA node that represents a LOOKUPSWITCH instruction.classA node that represents a method instruction.classA node that represents a MULTIANEWARRAY instruction.classA node that represents a TABLESWITCH instruction.classA node that represents a type instruction.classA node that represents a local variable instruction.Methods in org.eclipse.persistence.internal.libraries.asm.tree that return AbstractInsnNodeModifier and TypeMethodDescriptionabstract AbstractInsnNodeReturns a copy of this instruction.protected final AbstractInsnNodeAbstractInsnNode.cloneAnnotations(AbstractInsnNode insnNode) Clones the annotations of the given instruction into this instruction.InsnList.get(int index) Returns the instruction whose index is given.InsnList.getFirst()Returns the first instruction in this list.InsnList.getLast()Returns the last instruction in this list.AbstractInsnNode.getNext()Returns the next instruction in the list to which this instruction belongs, if any.AbstractInsnNode.getPrevious()Returns the previous instruction in the list to which this instruction belongs, if any.InsnList.toArray()Returns an array containing all the instructions in this list.Methods in org.eclipse.persistence.internal.libraries.asm.tree that return types with arguments of type AbstractInsnNodeModifier and TypeMethodDescriptionInsnList.iterator()Returns an iterator over the instructions in this list.InsnList.iterator(int index) Returns an iterator over the instructions in this list.Methods in org.eclipse.persistence.internal.libraries.asm.tree with parameters of type AbstractInsnNodeModifier and TypeMethodDescriptionvoidInsnList.add(AbstractInsnNode insnNode) Adds the given instruction to the end of this list.protected final AbstractInsnNodeAbstractInsnNode.cloneAnnotations(AbstractInsnNode insnNode) Clones the annotations of the given instruction into this instruction.booleanInsnList.contains(AbstractInsnNode insnNode) Returns true if the given instruction belongs to this list.intInsnList.indexOf(AbstractInsnNode insnNode) Returns the index of the given instruction in this list.voidInsnList.insert(AbstractInsnNode insnNode) Inserts the given instruction at the beginning of this list.voidInsnList.insert(AbstractInsnNode previousInsn, AbstractInsnNode insnNode) Inserts the given instruction after the specified instruction.voidInsnList.insert(AbstractInsnNode previousInsn, InsnList insnList) Inserts the given instructions after the specified instruction.voidInsnList.insertBefore(AbstractInsnNode nextInsn, AbstractInsnNode insnNode) Inserts the given instruction before the specified instruction.voidInsnList.insertBefore(AbstractInsnNode nextInsn, InsnList insnList) Inserts the given instructions before the specified instruction.voidInsnList.remove(AbstractInsnNode insnNode) Removes the given instruction from this list.voidInsnList.set(AbstractInsnNode oldInsnNode, AbstractInsnNode newInsnNode) Replaces an instruction of this list with another instruction.