Class BytecodeArrayAnnotationValue
java.lang.Object
org.eolang.jeo.representation.bytecode.BytecodeArrayAnnotationValue
- All Implemented Interfaces:
BytecodeAnnotationValue
An annotation value that is an array.
- Since:
- 0.6
-
Constructor Summary
ConstructorsConstructorDescriptionBytecodeArrayAnnotationValue(String name, List<BytecodeAnnotationValue> values) Constructor. -
Method Summary
Modifier and TypeMethodDescriptionIterable<org.xembly.Directive>directives(int index, Format format) Convert to directives.voidwriteTo(org.objectweb.asm.AnnotationVisitor visitor) Write the value to the given visitor.
-
Constructor Details
-
BytecodeArrayAnnotationValue
Constructor.- Parameters:
name- The name of the annotation property.values- The actual values.
-
-
Method Details
-
writeTo
public void writeTo(org.objectweb.asm.AnnotationVisitor visitor) Description copied from interface:BytecodeAnnotationValueWrite the value to the given visitor.- Specified by:
writeToin interfaceBytecodeAnnotationValue- Parameters:
visitor- Visitor.
-
directives
Description copied from interface:BytecodeAnnotationValueConvert to directives.- Specified by:
directivesin interfaceBytecodeAnnotationValue- Parameters:
index- Index of the annotation in the list of annotations.format- Format of the directives.- Returns:
- Directives.
-