Package javassist.bytecode.annotation
Class BooleanMemberValue
- java.lang.Object
-
- javassist.bytecode.annotation.MemberValue
-
- javassist.bytecode.annotation.BooleanMemberValue
-
public class BooleanMemberValue extends MemberValue
Boolean constant value.- Author:
- Bill Burke, Shigeru Chiba
-
-
Constructor Summary
Constructors Constructor Description BooleanMemberValue(boolean b, ConstPool cp)Constructs a boolean constant value.BooleanMemberValue(int index, ConstPool cp)Constructs a boolean constant value.BooleanMemberValue(ConstPool cp)Constructs a boolean constant value.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaccept(MemberValueVisitor visitor)Accepts a visitor.booleangetValue()Obtains the value of the member.voidsetValue(boolean newValue)Sets the value of the member.StringtoString()Obtains the string representation of this object.voidwrite(AnnotationsWriter writer)Writes the value.
-
-
-
Constructor Detail
-
BooleanMemberValue
public BooleanMemberValue(int index, ConstPool cp)Constructs a boolean constant value. The initial value is specified by the constant pool entry at the given index.- Parameters:
index- the index of a CONSTANT_Integer_info structure.
-
BooleanMemberValue
public BooleanMemberValue(boolean b, ConstPool cp)Constructs a boolean constant value.- Parameters:
b- the initial value.
-
BooleanMemberValue
public BooleanMemberValue(ConstPool cp)
Constructs a boolean constant value. The initial value is false.
-
-
Method Detail
-
getValue
public boolean getValue()
Obtains the value of the member.
-
setValue
public void setValue(boolean newValue)
Sets the value of the member.
-
toString
public String toString()
Obtains the string representation of this object.
-
write
public void write(AnnotationsWriter writer) throws IOException
Writes the value.- Specified by:
writein classMemberValue- Throws:
IOException
-
accept
public void accept(MemberValueVisitor visitor)
Accepts a visitor.- Specified by:
acceptin classMemberValue
-
-