Package com.helger.xml.microdom.convert
Interface IMicroTypeConverterCallback
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
A callback interface that is used to iterate all available micro type
converters.
- Author:
- Philip Helger
-
Method Summary
Modifier and TypeMethodDescriptioncom.helger.commons.state.EContinuecall(Class<?> aClass, IMicroTypeConverter<?> aConverter) Invoked for each converter.
-
Method Details
-
call
@Nonnull com.helger.commons.state.EContinue call(@Nonnull Class<?> aClass, @Nonnull IMicroTypeConverter<?> aConverter) Invoked for each converter.- Parameters:
aClass- The class for which the converter was registered.aConverter- The main converter object. Nevernull.- Returns:
EContinue.CONTINUEto continue iteration,EContinue.BREAKto stop iteration.
-