| java.lang.Object javassist.bytecode.annotation.MemberValue javassist.bytecode.annotation.FloatMemberValue
FloatMemberValue | public class FloatMemberValue extends MemberValue (Code) | | Floating-point number constant value.
author: Bill Burke author: Shigeru Chiba version: $Revision: 1.7 $ |
valueIndex | int valueIndex(Code) | | |
FloatMemberValue | public FloatMemberValue(int index, ConstPool cp)(Code) | | 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)(Code) | | Constructs a float constant value.
Parameters: f - the initial value. |
FloatMemberValue | public FloatMemberValue(ConstPool cp)(Code) | | Constructs a float constant value. The initial value is 0.0.
|
getValue | public float getValue()(Code) | | Obtains the value of the member.
|
setValue | public void setValue(float newValue)(Code) | | Sets the value of the member.
|
toString | public String toString()(Code) | | Obtains the string representation of this object.
|
|
|