W3cubDocs

/OpenJDK 25

Interface RecordAttribute

All Superinterfaces:
Attribute<RecordAttribute>, ClassElement, ClassFileElement
public sealed interface RecordAttribute extends Attribute<RecordAttribute>, ClassElement
Models the 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.

See Java Virtual Machine Specification:
4.7.30 The Record Attribute
Since:
24
See Also:

Method Summary

Modifier and Type Method Description
List<RecordComponentInfo> components()
Returns the components of this record class.
static RecordAttribute of(RecordComponentInfo... components)
Returns a Record attribute.
static RecordAttribute of(List<RecordComponentInfo> components)
Returns a Record attribute.

Methods declared in interface Attribute

attributeMapper, attributeName

Method Details

components

List<RecordComponentInfo> components()
Returns the components of this record class.
Returns:
the components of this record class
See Also:

of

static RecordAttribute of(List<RecordComponentInfo> components)
Returns a Record attribute.
Parameters:
components - the record components
Returns:
a Record attribute

of

static RecordAttribute of(RecordComponentInfo... components)
Returns a Record attribute.
Parameters:
components - the record components
Returns:
a Record 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