Interface NativeHandlerProvider
-
- All Known Implementing Classes:
CollectionHandlers,ConcurrencyHandlers,CoreHandlers,FileIOHandlers,IOHandlers,LocaleHandlers,MathHandlers,NetworkHandlers,NIOHandlers,ProcessHandlers,ReflectionHandlers,SecurityHandlers,StringHandlers,SystemHandlers,ThreadHandlers,TimeHandlers,VMHandlers,WrapperHandlers,ZipHandlers
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface NativeHandlerProvider
Contributor that registers a family of native-method handlers with a registry.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidregister(NativeRegistry registry)Adds this provider's handlers to a registry.
-
-
-
Method Detail
-
register
void register(NativeRegistry registry)
Adds this provider's handlers to a registry.- Parameters:
registry- the registry to populate
-
-