Class ConstantDouble
java.lang.Object
org.apache.bcel.classfile.Constant
org.apache.bcel.classfile.ConstantDouble
- All Implemented Interfaces:
Cloneable, ConstantObject, Node
This class is derived from the abstract
Constant and represents a reference to a Double object.- See Also:
-
Field Summary
-
Constructor Summary
ConstructorsConstructorDescriptionConstantDouble(double bytes) Constructs a ConstantDouble.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 double to file stream in binary format.doublegetBytes()Gets the data.Gets the Double object.voidsetBytes(double bytes) Sets the raw bytes that represent the double value.toString()Methods inherited from class Constant
clone, copy, equals, getComparator, getTag, hashCode, readConstant, setComparator
-
Constructor Details
-
ConstantDouble
Initialize from another object.- Parameters:
c- Source to copy.
-
ConstantDouble
-
-
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 double 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 Double object.- Specified by:
getConstantValuein interfaceConstantObject- Parameters:
cp- the constant pool (not used).- Returns:
- Double object.
-
setBytes
Sets the raw bytes that represent the double value.- Parameters:
bytes- the raw bytes that represent the double value.
-
toString
-