Module io.smallrye.classfile
Package io.smallrye.classfile.attribute
Interface MethodParametersAttribute
- All Superinterfaces:
Attribute<MethodParametersAttribute>,ClassFileElement,MethodElement
public sealed interface MethodParametersAttribute
extends Attribute<MethodParametersAttribute>, MethodElement
Models the
MethodParameters attribute
(JVMS ), 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.
- Since:
- 24
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionstatic MethodParametersAttributeof(MethodParameterInfo... parameters) Returns aMethodParametersattribute.static MethodParametersAttributeof(List<MethodParameterInfo> parameters) Returns aMethodParametersattribute.Returns information about the parameters of the method.Methods inherited from interface io.smallrye.classfile.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
Returns aMethodParametersattribute.- Parameters:
parameters- the method parameter descriptions- Returns:
- a
MethodParametersattribute - Throws:
IllegalArgumentException- if the number of parameters exceeds the limit ofu1
-
of
Returns aMethodParametersattribute.- Parameters:
parameters- the method parameter descriptions- Returns:
- a
MethodParametersattribute - Throws:
IllegalArgumentException- if the number of parameters exceeds the limit ofu1
-