Uses of Class
org.apache.bcel.generic.ReturnInstruction
Packages that use ReturnInstruction
Package
Description
This package contains the "generic" part of the
Byte Code Engineering
Library, i.e., classes to dynamically modify class objects and
byte code instructions.
Provides a PassVerifier class mostly used internally by JustIce, yielding a control flow graph for public use as
a nice side effect.
-
Uses of ReturnInstruction in org.apache.bcel.generic
Subclasses of ReturnInstruction in org.apache.bcel.genericModifier and TypeClassDescriptionclass
ARETURN - Return reference from methodclass
DRETURN - Return double from methodclass
FRETURN - Return float from methodclass
IRETURN - Return int from methodclass
LRETURN - Return long from methodclass
RETURN - Return from void methodFields in org.apache.bcel.generic declared as ReturnInstructionModifier and TypeFieldDescriptionstatic final ReturnInstruction
InstructionConstants.ARETURN
static final ReturnInstruction
InstructionConstants.DRETURN
static final ReturnInstruction
InstructionConstants.FRETURN
static final ReturnInstruction
InstructionConstants.IRETURN
static final ReturnInstruction
InstructionConstants.LRETURN
static final ReturnInstruction
InstructionConstants.RETURN
Methods in org.apache.bcel.generic that return ReturnInstructionModifier and TypeMethodDescriptionstatic ReturnInstruction
InstructionFactory.createReturn
(Type type) Create typed returnMethods in org.apache.bcel.generic with parameters of type ReturnInstructionModifier and TypeMethodDescriptionvoid
EmptyVisitor.visitReturnInstruction
(ReturnInstruction obj) void
Visitor.visitReturnInstruction
(ReturnInstruction obj) -
Uses of ReturnInstruction in org.apache.bcel.verifier.structurals
Methods in org.apache.bcel.verifier.structurals with parameters of type ReturnInstructionModifier and TypeMethodDescriptionvoid
InstConstraintVisitor.visitReturnInstruction
(ReturnInstruction o) Assures the generic preconditions of a ReturnInstruction instance.