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.
@FunctionalInterface public interface IMicroTypeConverterCallback
A callback interface that is used to iterate all available micro type converters.- Author:
- Philip Helger
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.helger.commons.state.EContinuecall(Class<?> aClass, IMicroTypeConverter<?> aConverter)Invoked for each converter.
-
-
-
Method Detail
-
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.
-
-