Class ConstantFloat
java.lang.Object
org.apache.bcel.classfile.Constant
org.apache.bcel.classfile.ConstantFloat
- All Implemented Interfaces:
Cloneable, ConstantObject, Node
This class is derived from the abstract
Constant and represents a reference to a float object.- See Also:
-
Field Summary
-
Constructor Summary
ConstructorsConstructorDescriptionConstantFloat(float bytes) Constructs a ConstantFloat.Initialize from another object. -
Method Summary
Modifier and TypeMethodDescriptionvoidCalled by objects that are traversing the nodes of the tree implicitly defined by the contents of a Java class.voiddump(DataOutputStream file) Dumps constant float to file stream in binary format.floatgetBytes()Gets the data.Gets the Float object.voidsetBytes(float bytes) Sets the raw bytes that represent the float value.toString()Methods inherited from class Constant
clone, copy, equals, getComparator, getTag, hashCode, readConstant, setComparator
-
Constructor Details
-
ConstantFloat
Initialize from another object. Note that both objects use the same references (shallow copy). Use clone() for a physical copy.- Parameters:
c- Source to copy.
-
ConstantFloat
-
-
Method Details
-
accept
Called by objects that are traversing the nodes of the tree implicitly defined by the contents of a Java class. I.e., the hierarchy of methods, fields, attributes, etc. spawns a tree of objects. -
dump
Dumps constant float to file stream in binary format.- Specified by:
dumpin classConstant- Parameters:
file- Output file stream.- Throws:
IOException- if an I/O error occurs.
-
getBytes
-
getConstantValue
Gets the Float object.- Specified by:
getConstantValuein interfaceConstantObject- Parameters:
cp- the constant pool (not used).- Returns:
- Float object.
-
setBytes
Sets the raw bytes that represent the float value.- Parameters:
bytes- the raw bytes that represent the float value.
-
toString
-