Uses of Class
org.apache.bcel.generic.ArithmeticInstruction
-
Packages that use ArithmeticInstruction 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 ArithmeticInstruction in org.apache.bcel.generic
Subclasses of ArithmeticInstruction in org.apache.bcel.generic Modifier and Type Class Description class
DADD
DADD - Add doublesclass
DDIV
DDIV - Divide doublesclass
DMUL
DMUL - Multiply doublesclass
DNEG
DNEG - Negate doubleclass
DREM
DREM - Remainder of doublesclass
DSUB
DSUB - Substract doublesclass
FADD
FADD - Add floatsclass
FDIV
FDIV - Divide floatsclass
FMUL
FMUL - Multiply floatsclass
FNEG
FNEG - Negate floatclass
FREM
FREM - Remainder of floatsclass
FSUB
FSUB - Substract floatsclass
IADD
IADD - Add intsclass
IAND
IAND - Bitwise AND intclass
IDIV
IDIV - Divide intsclass
IMUL
IMUL - Multiply intsclass
INEG
INEG - Negate intclass
IOR
IOR - Bitwise OR intclass
IREM
IREM - Remainder of intclass
ISHL
ISHL - Arithmetic shift left intclass
ISHR
ISHR - Arithmetic shift right intclass
ISUB
ISUB - Substract intsclass
IUSHR
IUSHR - Logical shift right intclass
IXOR
IXOR - Bitwise XOR intclass
LADD
LADD - Add longsclass
LAND
LAND - Bitwise AND longsclass
LDIV
LDIV - Divide longsclass
LMUL
LMUL - Multiply longsclass
LNEG
LNEG - Negate longclass
LOR
LOR - Bitwise OR longclass
LREM
LREM - Remainder of longclass
LSHL
LSHL - Arithmetic shift left longclass
LSHR
LSHR - Arithmetic shift right longclass
LSUB
LSUB - Substract longsclass
LUSHR
LUSHR - Logical shift right longclass
LXOR
LXOR - Bitwise XOR longFields in org.apache.bcel.generic declared as ArithmeticInstruction Modifier and Type Field Description static ArithmeticInstruction
InstructionConstants. DADD
static ArithmeticInstruction
InstructionConstants. DDIV
static ArithmeticInstruction
InstructionConstants. DMUL
static ArithmeticInstruction
InstructionConstants. DNEG
static ArithmeticInstruction
InstructionConstants. DREM
static ArithmeticInstruction
InstructionConstants. DSUB
static ArithmeticInstruction
InstructionConstants. FADD
static ArithmeticInstruction
InstructionConstants. FDIV
static ArithmeticInstruction
InstructionConstants. FMUL
static ArithmeticInstruction
InstructionConstants. FNEG
static ArithmeticInstruction
InstructionConstants. FREM
static ArithmeticInstruction
InstructionConstants. FSUB
static ArithmeticInstruction
InstructionConstants. IADD
static ArithmeticInstruction
InstructionConstants. IAND
static ArithmeticInstruction
InstructionConstants. IDIV
static ArithmeticInstruction
InstructionConstants. IMUL
static ArithmeticInstruction
InstructionConstants. INEG
static ArithmeticInstruction
InstructionConstants. IOR
static ArithmeticInstruction
InstructionConstants. IREM
static ArithmeticInstruction
InstructionConstants. ISHL
static ArithmeticInstruction
InstructionConstants. ISHR
static ArithmeticInstruction
InstructionConstants. ISUB
static ArithmeticInstruction
InstructionConstants. IUSHR
static ArithmeticInstruction
InstructionConstants. IXOR
static ArithmeticInstruction
InstructionConstants. LADD
static ArithmeticInstruction
InstructionConstants. LAND
static ArithmeticInstruction
InstructionConstants. LDIV
static ArithmeticInstruction
InstructionConstants. LMUL
static ArithmeticInstruction
InstructionConstants. LNEG
static ArithmeticInstruction
InstructionConstants. LOR
static ArithmeticInstruction
InstructionConstants. LREM
static ArithmeticInstruction
InstructionConstants. LSHL
static ArithmeticInstruction
InstructionConstants. LSHR
static ArithmeticInstruction
InstructionConstants. LSUB
static ArithmeticInstruction
InstructionConstants. LUSHR
static ArithmeticInstruction
InstructionConstants. LXOR
Methods in org.apache.bcel.generic that return ArithmeticInstruction Modifier and Type Method Description static ArithmeticInstruction
InstructionFactory. createBinaryOperation(java.lang.String op, Type type)
Create binary operation for simple basic types, such as int and float.Methods in org.apache.bcel.generic with parameters of type ArithmeticInstruction Modifier and Type Method Description void
EmptyVisitor. visitArithmeticInstruction(ArithmeticInstruction obj)
void
Visitor. visitArithmeticInstruction(ArithmeticInstruction obj)
-