Package com.formkiq.graalvm.annotations
Annotation Type Reflectable
-
@Retention(RUNTIME) @Target({TYPE,FIELD,CONSTRUCTOR,METHOD}) public @interface ReflectableAn annotation that when applid to a class add the class to Graalvm's list of Reflection classes to process. Based on https://github.com/oracle/graal/blob/master/substratevm/REFLECTION.md
-
-
Optional Element Summary
Optional Elements Modifier and Type Optional Element Description booleanallDeclaredConstructorsInclude all declared constructors to aElementType.TYPE.booleanallDeclaredFieldsInclude all declared fields to aElementType.TYPE.booleanallDeclaredMethodsInclude all declared methods to aElementType.TYPE.booleanallowWriteSet allowWrite on Field.booleanallPublicConstructorsInclude all public constructors to aElementType.TYPE.booleanallPublicFieldsInclude all public fields to aElementType.TYPE.booleanallPublicMethodsInclude all public methods to aElementType.TYPE.
-