Class INSTANCEOF
java.lang.Object
org.apache.bcel.generic.Instruction
org.apache.bcel.generic.CPInstruction
org.apache.bcel.generic.INSTANCEOF
- All Implemented Interfaces:
Cloneable, ExceptionThrower, IndexedInstruction, LoadClass, StackConsumer, StackProducer, TypedInstruction
public class INSTANCEOF
extends CPInstruction
implements LoadClass, ExceptionThrower, StackProducer, StackConsumer
INSTANCEOF - Determine if object is of given type
Stack: ..., objectref -> ..., result
-
Field Summary
Fields inherited from class CPInstruction
indexFields inherited from class Instruction
length, opcode -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidCall corresponding visitor method(s).Class<?>[]Returns theObjectTypeof the referenced class or interface that may be loaded and resolved.Methods inherited from class CPInstruction
dump, getIndex, getType, initFromFile, setIndex, toString, toStringMethods inherited from class Instruction
consumeStack, copy, equals, getComparator, getLength, getName, getOpcode, hashCode, isValidByte, isValidShort, produceStack, readInstruction, setComparator, toStringMethods inherited from interface StackConsumer
consumeStackMethods inherited from interface StackProducer
produceStack
-
Constructor Details
-
INSTANCEOF
-
-
Method Details
-
accept
Call corresponding visitor method(s). The order is: Call visitor methods of implemented interfaces first, then call methods according to the class hierarchy in descending order, i.e., the most specific visitXXX() call comes last.- Specified by:
acceptin classInstruction- Parameters:
v- Visitor object
-
getExceptions
- Specified by:
getExceptionsin interfaceExceptionThrower
-
getLoadClassType
Description copied from interface:LoadClassReturns theObjectTypeof the referenced class or interface that may be loaded and resolved.- Specified by:
getLoadClassTypein interfaceLoadClass- Parameters:
cpg- A ConstantPoolGen- Returns:
- object type that may be loaded or null if a primitive is referenced
-