Package javassist.bytecode.annotation
Class ArrayMemberValue
- java.lang.Object
-
- javassist.bytecode.annotation.MemberValue
-
- javassist.bytecode.annotation.ArrayMemberValue
-
public class ArrayMemberValue extends MemberValue
Array member.- Author:
- Bill Burke, Shigeru Chiba
-
-
Constructor Summary
Constructors Constructor Description ArrayMemberValue(MemberValue t, ConstPool cp)Constructs an array.ArrayMemberValue(ConstPool cp)Constructs an array.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaccept(MemberValueVisitor visitor)Accepts a visitor.MemberValuegetType()Obtains the type of the elements.MemberValue[]getValue()Obtains the elements of the array.voidsetValue(MemberValue[] elements)Sets the elements of the array.StringtoString()Obtains the string representation of this object.voidwrite(AnnotationsWriter writer)Writes the value.
-
-
-
Constructor Detail
-
ArrayMemberValue
public ArrayMemberValue(ConstPool cp)
Constructs an array. The initial value or type are not specified.
-
ArrayMemberValue
public ArrayMemberValue(MemberValue t, ConstPool cp)
Constructs an array. The initial value is not specified.- Parameters:
t- the type of the array elements.
-
-
Method Detail
-
getType
public MemberValue getType()
Obtains the type of the elements.- Returns:
- null if the type is not specified.
-
getValue
public MemberValue[] getValue()
Obtains the elements of the array.
-
setValue
public void setValue(MemberValue[] elements)
Sets the elements of the array.
-
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
-
-