Uses of Class
org.apache.bcel.generic.ArrayInstruction
-
Packages that use ArrayInstruction Package Description org.apache.bcel.generic This package contains the "generic" part of the Byte Code Engineering Library, i.e., classes to dynamically modify class objects and byte code instructions. -
-
Uses of ArrayInstruction in org.apache.bcel.generic
Subclasses of ArrayInstruction in org.apache.bcel.generic Modifier and Type Class Description class
AALOAD
AALOAD - Load reference from arrayclass
AASTORE
AASTORE - Store into reference arrayclass
BALOAD
BALOAD - Load byte or boolean from arrayclass
BASTORE
BASTORE - Store into byte or boolean arrayclass
CALOAD
CALOAD - Load char from arrayclass
CASTORE
CASTORE - Store into char arrayclass
DALOAD
DALOAD - Load double from arrayclass
DASTORE
DASTORE - Store into double arrayclass
FALOAD
FALOAD - Load float from arrayclass
FASTORE
FASTORE - Store into float arrayclass
IALOAD
IALOAD - Load int from arrayclass
IASTORE
IASTORE - Store into int arrayclass
LALOAD
LALOAD - Load long from arrayclass
LASTORE
LASTORE - Store into long arrayclass
SALOAD
SALOAD - Load short from arrayclass
SASTORE
SASTORE - Store into short arrayFields in org.apache.bcel.generic declared as ArrayInstruction Modifier and Type Field Description static ArrayInstruction
InstructionConstants. AALOAD
static ArrayInstruction
InstructionConstants. AASTORE
static ArrayInstruction
InstructionConstants. BALOAD
static ArrayInstruction
InstructionConstants. BASTORE
static ArrayInstruction
InstructionConstants. CALOAD
static ArrayInstruction
InstructionConstants. CASTORE
static ArrayInstruction
InstructionConstants. DALOAD
static ArrayInstruction
InstructionConstants. DASTORE
static ArrayInstruction
InstructionConstants. FALOAD
static ArrayInstruction
InstructionConstants. FASTORE
static ArrayInstruction
InstructionConstants. IALOAD
static ArrayInstruction
InstructionConstants. IASTORE
static ArrayInstruction
InstructionConstants. LALOAD
static ArrayInstruction
InstructionConstants. LASTORE
static ArrayInstruction
InstructionConstants. SALOAD
static ArrayInstruction
InstructionConstants. SASTORE
Methods in org.apache.bcel.generic that return ArrayInstruction Modifier and Type Method Description static ArrayInstruction
InstructionFactory. createArrayLoad(Type type)
static ArrayInstruction
InstructionFactory. createArrayStore(Type type)
Methods in org.apache.bcel.generic with parameters of type ArrayInstruction Modifier and Type Method Description void
EmptyVisitor. visitArrayInstruction(ArrayInstruction obj)
void
Visitor. visitArrayInstruction(ArrayInstruction obj)
-