Attribute<RecordAttribute>, ClassElement, ClassFileElementpublic sealed interface RecordAttribute extends Attribute<RecordAttribute>, ClassElement
Record attribute (JVMS 4.7.30), which indicates that this class is a record class and the record components. 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 16, major version 60.
Record Attribute| Modifier and Type | Method | Description |
|---|---|---|
List |
components() |
Returns the components of this record class. |
static RecordAttribute |
of |
Returns a Record attribute. |
static RecordAttribute |
of |
Returns a Record attribute. |
attributeMapper, attributeName
List<RecordComponentInfo> components()
static RecordAttribute of(List<RecordComponentInfo> components)
Record attribute.components - the record componentsRecord attributestatic RecordAttribute of(RecordComponentInfo... components)
Record attribute.components - the record componentsRecord attribute
© 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/RecordAttribute.html