Interface Feature.AfterRegistrationAccess
- All Superinterfaces:
Feature.FeatureAccess
- Enclosing interface:
Feature
Access methods available for
Feature.afterRegistration(Feature.AfterRegistrationAccess).- Since:
- 19.0
-
Method Summary
Modifier and TypeMethodDescriptionReturns the instance ofRuntimeForeignAccessused to register elements for foreign access at run time.Returns the instance ofRuntimeJNIAccessused to register elements for JNI access at run time.Returns the instance ofRuntimeReflectionused to register elements for reflection at run time.Returns the instance ofRuntimeResourceAccessused to register resources for run time access.Methods inherited from interface Feature.FeatureAccess
findClassByName, getApplicationClassLoader, getApplicationClassPath, getApplicationModulePath
-
Method Details
-
getReflectiveAccess
ReflectiveAccess getReflectiveAccess()Returns the instance ofRuntimeReflectionused to register elements for reflection at run time. All registrations should happen inFeature.afterRegistration(Feature.AfterRegistrationAccess). -
getResourceAccess
ResourceAccess getResourceAccess()Returns the instance ofRuntimeResourceAccessused to register resources for run time access. All registrations should happen inFeature.afterRegistration(Feature.AfterRegistrationAccess). -
getJNIAccess
JNIAccess getJNIAccess()Returns the instance ofRuntimeJNIAccessused to register elements for JNI access at run time. All registrations should happen inFeature.afterRegistration(Feature.AfterRegistrationAccess). -
getForeignAccess
ForeignAccess getForeignAccess()Returns the instance ofRuntimeForeignAccessused to register elements for foreign access at run time. All registrations should happen inFeature.afterRegistration(Feature.AfterRegistrationAccess).
-