Preview
Second Preview of ClassFile API (JEP 466).
Programs can only use RuntimeInvisibleAnnotationsAttribute
when preview features are enabled.
Preview features may be removed in a future release,
or upgraded to permanent features of the Java platform.
RuntimeInvisibleAnnotations
attribute 4.7.17, which
can appear on classes, methods, and fields. Delivered as a
java.lang.classfile.ClassElement
, java.lang.classfile.FieldElement
, or
java.lang.classfile.MethodElement
when traversing the corresponding model type.
The attribute does not permit multiple instances in a given location. Subsequent occurrence of the attribute takes precedence during the attributed element build or transformation.
The attribute was introduced in the Java SE Platform version 5.0.
Modifier and Type | Method and Description |
---|---|
public List | Returns: the non-runtime-visible annotations on this class, field, or methodReturns the non-runtime-visible annotations on this class, field, or method. |
public static RuntimeInvisibleAnnotationsAttribute | Returns: aRuntimeInvisibleAnnotations attributethe annotations annotations)Returns a |
public static RuntimeInvisibleAnnotationsAttribute | Returns: aRuntimeInvisibleAnnotations attributethe annotations annotations)Returns a |
annotations | back to summary |
---|---|
public List Returns the non-runtime-visible annotations on this class, field, or method.
|
of | back to summary |
---|---|
public static RuntimeInvisibleAnnotationsAttribute of(List<Annotation> annotations) Returns a
|
of | back to summary |
---|---|
public static RuntimeInvisibleAnnotationsAttribute of(Annotation... annotations) Returns a
|