Interface TypeConverterContributor
public interface TypeConverterContributor
A service provider interface for contributing type converters.
- Since:
- 1.6.0
- Author:
- Christian Beikov
-
Method Summary
Modifier and TypeMethodDescriptionintpriority()Returns a priority(lower means higher priority) of the contributor.voidregisterTypeConverters(Map<Class<?>, TypeConverter<?>> converters) Registers the converters into the given map of converters.
-
Method Details
-
registerTypeConverters
Registers the converters into the given map of converters.- Parameters:
converters- The map of converters
-
priority
int priority()Returns a priority(lower means higher priority) of the contributor.- Returns:
- the priority
-