Package org.apache.bcel.generic
Class FCONST
- java.lang.Object
-
- org.apache.bcel.generic.Instruction
-
- org.apache.bcel.generic.FCONST
-
- All Implemented Interfaces:
java.lang.Cloneable,ConstantPushInstruction,PushInstruction,StackProducer,TypedInstruction
public class FCONST extends Instruction implements ConstantPushInstruction
FCONST - Push 0.0, 1.0 or 2.0, other values cause an exceptionStack: ... -> ...,
-
-
Field Summary
Fields Modifier and Type Field Description private floatvalue-
Fields inherited from class org.apache.bcel.generic.Instruction
EMPTY_ARRAY, length, opcode
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaccept(Visitor v)Call corresponding visitor method(s).TypegetType(ConstantPoolGen cp)Gets the type associated with this instruction.java.lang.NumbergetValue()Gets the value to push onto the stack.-
Methods inherited from class org.apache.bcel.generic.Instruction
consumeStack, copy, dispose, dump, equals, getComparator, getLength, getName, getOpcode, hashCode, initFromFile, isValidByte, isValidShort, produceStack, readInstruction, setComparator, setLength, setOpcode, toString, toString, toString
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.apache.bcel.generic.StackProducer
produceStack
-
-
-
-
Method Detail
-
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, that is, the most specific visitXXX() call comes last.- Specified by:
acceptin classInstruction- Parameters:
v- Visitor object.
-
getType
public Type getType(ConstantPoolGen cp)
Description copied from interface:TypedInstructionGets the type associated with this instruction.- Specified by:
getTypein interfaceTypedInstruction- Parameters:
cp- the constant pool generator.- Returns:
- Type.FLOAT.
-
getValue
public java.lang.Number getValue()
Description copied from interface:ConstantPushInstructionGets the value to push onto the stack.- Specified by:
getValuein interfaceConstantPushInstruction- Returns:
- the value to push onto the stack.
-
-