Class FloatMemberValue

java.lang.Object
javassist.bytecode.annotation.MemberValue
javassist.bytecode.annotation.FloatMemberValue

public class FloatMemberValue extends MemberValue
Floating-point number constant value.
Version:
$Revision: 1.7 $
Author:
Bill Burke, Shigeru Chiba
  • Constructor Details

    • FloatMemberValue

      public FloatMemberValue(int index, ConstPool cp)
      Constructs a float constant value. The initial value is specified by the constant pool entry at the given index.
      Parameters:
      index - the index of a CONSTANT_Float_info structure.
    • FloatMemberValue

      public FloatMemberValue(float f, ConstPool cp)
      Constructs a float constant value.
      Parameters:
      f - the initial value.
    • FloatMemberValue

      public FloatMemberValue(ConstPool cp)
      Constructs a float constant value. The initial value is 0.0.
  • Method Details