| java.lang.Object javassist.bytecode.annotation.MemberValue javassist.bytecode.annotation.DoubleMemberValue
DoubleMemberValue | public class DoubleMemberValue extends MemberValue (Code) | | Double floating-point number constant value.
author: Bill Burke author: Shigeru Chiba version: $Revision: 1.7 $ |
valueIndex | int valueIndex(Code) | | |
DoubleMemberValue | public DoubleMemberValue(int index, ConstPool cp)(Code) | | Constructs a double constant value. The initial value is specified
by the constant pool entry at the given index.
Parameters: index - the index of a CONSTANT_Double_info structure. |
DoubleMemberValue | public DoubleMemberValue(double d, ConstPool cp)(Code) | | Constructs a double constant value.
Parameters: d - the initial value. |
DoubleMemberValue | public DoubleMemberValue(ConstPool cp)(Code) | | Constructs a double constant value. The initial value is 0.0.
|
getValue | public double getValue()(Code) | | Obtains the value of the member.
|
setValue | public void setValue(double newValue)(Code) | | Sets the value of the member.
|
toString | public String toString()(Code) | | Obtains the string representation of this object.
|
|
|