Package classycle.classfile
Class DoubleConstant
- java.lang.Object
-
- classycle.classfile.Constant
-
- classycle.classfile.DoubleConstant
-
public class DoubleConstant extends Constant
Constant representing a double value.- Author:
- Franz-Josef Elmer
-
-
Constructor Summary
Constructors Constructor Description DoubleConstant(Constant[] pool, double value)
Creates an instance for the specified double value.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description double
getValue()
Returns the wrapped double value.java.lang.String
toString()
Returns the constant type and the double value.-
Methods inherited from class classycle.classfile.Constant
extractConstantPool, getConstant
-
-
-
-
Constructor Detail
-
DoubleConstant
public DoubleConstant(Constant[] pool, double value)
Creates an instance for the specified double value.
-
-