A sequence consisting of class file objects and "reasons" why the respective class file was created.
A sequence consisting of class file objects and "reasons" why the respective class file was created.
Returns the unique ID that identifies this kind of attribute (Signature, LineNumberTable,...)
Returns the unique ID that identifies this kind of attribute (Signature, LineNumberTable,...)
This id can then be used in a switch statement to efficiently identify the attribute.
(attribute.id : @scala.annotation.switch) match { case Signature.Id => ... }
The unique ids are manually associated with the attributes. The attributes use the following IDs:
Returns true if this attribute and the given one are jvm equal.
Returns true if this attribute and the given one are jvm equal.
If this class is implemented as a proper case class, this method can often be
implemented by forwarding to the default equals method.
This attribute stores references to ClassFile objects that have been generated while parsing the annotated ClassFile.
For example, to represent proxy types that have been created by Java8 lambda or method reference expressions.
This attribute may only be present while the class file is processed/read and will be removed from the attributes table before any analysis sees the "final" class file.
This attribute may occur multiple times in the attributes table of a class file structure.
A sequence consisting of class file objects and "reasons" why the respective class file was created.