Attribute<RuntimeInvisibleParameterAnnotationsAttribute>, ClassFileElement, MethodElementpublic sealed interface RuntimeInvisibleParameterAnnotationsAttribute extends Attribute<RuntimeInvisibleParameterAnnotationsAttribute>, MethodElement
RuntimeInvisibleParameterAnnotations attribute (JVMS 4.7.19), which stores declaration annotations on the method parameters of this method that are visible to class file consumers but are not visible to core reflection. 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 5.0, major version 49.
RuntimeInvisibleParameterAnnotations Attribute| Modifier and Type | Method | Description |
|---|---|---|
static RuntimeInvisibleParameterAnnotationsAttribute |
of |
Returns a RuntimeInvisibleParameterAnnotations attribute. |
List |
parameterAnnotations() |
Returns the list of run-time invisible annotations on the method parameters. |
attributeMapper, attributeName
List<List<Annotation>> parameterAnnotations()
static RuntimeInvisibleParameterAnnotationsAttribute of(List<List<Annotation>> parameterAnnotations)
RuntimeInvisibleParameterAnnotations attribute. The parameterAnnotations list should not be truncated, and must have a length equal to the number of formal parameters; elements for unannotated parameters may be empty, but may not be omitted. It may omit some synthetic or implicit parameters.parameterAnnotations - a list of run-time invisible annotations for each parameterRuntimeInvisibleParameterAnnotations 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/RuntimeInvisibleParameterAnnotationsAttribute.html