Attribute<NestMembersAttribute>, ClassElement, ClassFileElementpublic sealed interface NestMembersAttribute extends Attribute<NestMembersAttribute>, ClassElement
NestMembers attribute (JVMS 4.7.29), which indicates that this class is the host of a nest and the other nest members. This attribute only appears on classes, and does not permit multiple instances in a class. It has a data dependency on the constant pool.
The attribute was introduced in the Java SE Platform version 11, major version 55.
NestMembers Attribute| Modifier and Type | Method | Description |
|---|---|---|
List |
nestMembers() |
Returns the classes belonging to the nest hosted by this class. |
static NestMembersAttribute |
of |
Returns a NestMembers attribute. |
static NestMembersAttribute |
of |
Returns a NestMembers attribute. |
static NestMembersAttribute |
ofSymbols |
Returns a NestMembers attribute. |
static NestMembersAttribute |
ofSymbols |
Returns a NestMembers attribute. |
attributeMapper, attributeName
List<ClassEntry> nestMembers()
static NestMembersAttribute of(List<ClassEntry> nestMembers)
NestMembers attribute.nestMembers - the member classes of the nestNestMembers attributestatic NestMembersAttribute of(ClassEntry... nestMembers)
NestMembers attribute.nestMembers - the member classes of the nestNestMembers attributestatic NestMembersAttribute ofSymbols(List<ClassDesc> nestMembers)
NestMembers attribute.nestMembers - the member classes of the nestNestMembers attributeIllegalArgumentException - if any of nestMembers is primitivestatic NestMembersAttribute ofSymbols(ClassDesc... nestMembers)
NestMembers attribute.nestMembers - the member classes of the nestNestMembers attributeIllegalArgumentException - if any of nestMembers is primitive
© 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/NestMembersAttribute.html