Module io.smallrye.classfile
Package io.smallrye.classfile.attribute
Interface StackMapTableAttribute
- All Superinterfaces:
Attribute<StackMapTableAttribute>,ClassFileElement,CodeElement
public sealed interface StackMapTableAttribute
extends Attribute<StackMapTableAttribute>, CodeElement
Models the
StackMapTable attribute (JVMS
), which is used for verification by type checking ().
This attribute is not delivered in the traversal of a CodeAttribute,
but instead automatically generated upon class file writing.
Advanced users can supply their own stack maps according to the ClassFile.StackMapsOption.
This attribute only appears on Code attributes, and does not permit
multiple instances in a
Code attribute. It has a data dependency on labels in the code array.
This attribute was introduced in the Java SE Platform version 6, major version 50.
- Since:
- 24
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionentries()Returns the stack map frames.static StackMapTableAttributeof(List<StackMapFrameInfo> entries) Returns a stack map table attribute.Methods inherited from interface io.smallrye.classfile.Attribute
attributeMapper, attributeName
-
Method Details
-
entries
List<StackMapFrameInfo> entries()Returns the stack map frames.- Returns:
- the stack map frames
-
of
Returns a stack map table attribute.- Parameters:
entries- the stack map frames- Returns:
- a stack map table attribute
- Throws:
IllegalArgumentException- if the number of frames exceeds the limit ofu2
-