Top Description Methods
org.graalvm.nativeimage.c.function

public @Interface CMacroInfo

extends Annotation
Annotations
@Retention:SOURCE
@Target:METHOD
Imports
java.lang.annotation.ElementType, .Retention, .RetentionPolicy, .Target

Informational only. Used to annotate a method that implements features implemented by a macro in C. There is no automatic way to translate a C macro to equivalent Java code. Therefore, the body of the annotated method must be written manually, and updated manually when the C macro changes.
Since
19.0

Method Summary

Modifier and TypeMethod and Description
public String
value()

Specifies the name of the C macro the annotated method corresponds to.

Inherited from java.lang.annotation.Annotation:
annotationTypeequalshashCodetoString

Method Detail

valueback to summary
public String value()

Specifies the name of the C macro the annotated method corresponds to.

Since
19.0