Attribute<StackMapTableAttribute>, ClassFileElement, CodeElementpublic sealed interface StackMapTableAttribute extends Attribute<StackMapTableAttribute>, CodeElement
StackMapTable attribute (JVMS 4.7.4), which is used for verification by type checking (4.10.1). 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.
StackMapTable Attribute| Modifier and Type | Method | Description |
|---|---|---|
List |
entries() |
Returns the stack map frames. |
static StackMapTableAttribute |
of |
Returns a stack map table attribute. |
attributeMapper, attributeName
List<StackMapFrameInfo> entries()
static StackMapTableAttribute of(List<StackMapFrameInfo> entries)
entries - the stack map frames
© 1993, 2025, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/25/docs/api/java.base/java/lang/classfile/attribute/StackMapTableAttribute.html