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