W3cubDocs

/OpenJDK 25

Interface MethodParametersAttribute

All Superinterfaces:
Attribute<MethodParametersAttribute>, ClassFileElement, MethodElement
public sealed interface MethodParametersAttribute extends Attribute<MethodParametersAttribute>, MethodElement
Models the MethodParameters attribute (JVMS 4.7.24), which records reflective information about this method's parameters such as access modifiers.

This attribute only appears on methods, and does not permit multiple instances in a method. It has a data dependency on the constant pool.

The attribute was introduced in the Java SE Platform version 8, major version 52.

See Java Virtual Machine Specification:
4.7.24 The MethodParameters Attribute
Since:
24
See Also:

Method Summary

Modifier and Type Method Description
static MethodParametersAttribute of(MethodParameterInfo... parameters)
Returns a MethodParameters attribute.
static MethodParametersAttribute of(List<MethodParameterInfo> parameters)
Returns a MethodParameters attribute.
List<MethodParameterInfo> parameters()
Returns information about the parameters of the method.

Methods declared in interface Attribute

attributeMapper, attributeName

Method Details

parameters

List<MethodParameterInfo> parameters()
Returns information about the parameters of the method. The i'th entry in the list corresponds to the i'th parameter in the method descriptor.
Returns:
information about the parameters of the method

of

static MethodParametersAttribute of(List<MethodParameterInfo> parameters)
Returns a MethodParameters attribute.
Parameters:
parameters - the method parameter descriptions
Returns:
a MethodParameters attribute

of

static MethodParametersAttribute of(MethodParameterInfo... parameters)
Returns a MethodParameters attribute.
Parameters:
parameters - the method parameter descriptions
Returns:
a MethodParameters 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/MethodParametersAttribute.html