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

public @Interface CEnumConstant

extends Annotation
Annotations
@Retention:RUNTIME
@Target:FIELD
Imports
java.lang.annotation.ElementType, .Retention, .RetentionPolicy, .Target

Provides additional properties for a field (i.e., an enumeration value) of Java enumeration annotated with CEnum.
Since
19.0

Method Summary

Modifier and TypeMethod and Description
public boolean
includeInLookup()

Specifies whether the annotated enumeration value is returned by the lookup method annotated with CEnumLookup.

public String
value()

Specifies the name of the imported C enum constant.

Inherited from java.lang.annotation.Annotation:
annotationTypeequalshashCodetoString

Method Detail

includeInLookupback to summary
public boolean includeInLookup()

Specifies whether the annotated enumeration value is returned by the lookup method annotated with CEnumLookup.

Since
19.0
valueback to summary
public String value()

Specifies the name of the imported C enum constant.

Since
19.0