org.apache.bcel.generic
Class ICONST
java.lang.Object
org.apache.bcel.generic.Instruction
org.apache.bcel.generic.ICONST
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Cloneable, ConstantPushInstruction, PushInstruction, StackProducer, TypedInstruction
public class ICONST
- extends Instruction
- implements ConstantPushInstruction, TypedInstruction
ICONST - Push value between -1, ..., 5, other values cause an exception
Stack: ... -> ...,
- Version:
- $Id: ICONST.java 386056 2006-03-15 11:31:56Z tcurdt $
- Author:
- M. Dahm
- See Also:
- Serialized Form
Field Summary |
private int |
value
|
Constructor Summary |
ICONST()
Empty constructor needed for the Class.newInstance() statement in
Instruction.readInstruction(). |
ICONST(int i)
|
Methods inherited from class org.apache.bcel.generic.Instruction |
consumeStack, copy, dispose, dump, equals, getComparator, getLength, getName, getOpcode, initFromFile, produceStack, readInstruction, setComparator, toString, toString, toString |
Methods inherited from class java.lang.Object |
clone, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
value
private int value
ICONST
ICONST()
- Empty constructor needed for the Class.newInstance() statement in
Instruction.readInstruction(). Not to be used otherwise.
ICONST
public ICONST(int i)
getValue
public java.lang.Number getValue()
- Specified by:
getValue
in interface ConstantPushInstruction
getType
public Type getType(ConstantPoolGen cp)
- Specified by:
getType
in interface TypedInstruction
- Returns:
- Type.INT
accept
public void accept(Visitor v)
- 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:
accept
in class Instruction
- Parameters:
v
- Visitor object