You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 23, 2023. It is now read-only.
Replace int access() default 0; by TypeAccess[] access() default TypeAccess.AUTO_DETECT; in order to have a more strongly typed API, benefits from autocomplete and be consistent with NativeConfigurationRegistry. So in term of use case, that would transform @TypeHint(access = AccessBits.DECLARED_CONSTRUCTORS | AccessBits.DECLARED_METHODS) to @TypeHint(flags = { TypeAccess.DECLARED_CONSTRUCTORS, TypeAccess.DECLARED_METHODS }).
The text was updated successfully, but these errors were encountered:
Replace
int access() default 0;
byTypeAccess[] access() default TypeAccess.AUTO_DETECT;
in order to have a more strongly typed API, benefits from autocomplete and be consistent with NativeConfigurationRegistry. So in term of use case, that would transform@TypeHint(access = AccessBits.DECLARED_CONSTRUCTORS | AccessBits.DECLARED_METHODS)
to@TypeHint(flags = { TypeAccess.DECLARED_CONSTRUCTORS, TypeAccess.DECLARED_METHODS })
.The text was updated successfully, but these errors were encountered: