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

public @Interface CFieldOffset

extends Annotation
Annotations
@Retention:RUNTIME
@Target:METHOD
Imports
java.lang.annotation.ElementType, .Retention, .RetentionPolicy, .Target, org.graalvm.word.WordBase

Denotes a method as a field offset access of a C struct. The method must not have any parameters. The return type must be a primitive integer type or a word type.

Calls to the method are replaced with a compile time constant. If the annotation is used on a non-static method, the receiver is ignored. Java does not allow an interface method to be declared static native. So the annotated method must either be non-static (with the receiver being ignored), or static but non-native (with the method body being ignored).

Since
19.0

Method Summary

Modifier and TypeMethod and Description
public String
value()

Specifies the field name inside the C struct.

Inherited from java.lang.annotation.Annotation:
annotationTypeequalshashCodetoString

Method Detail

valueback to summary
public String value()

Specifies the field name inside the C struct. If no name is provided, the method name is used as the field name. A possible "offsetOf" prefix of the method name is removed.

Since
19.0