Interface ISerializationConverterCallback
- 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 serialization
converters.
- Author:
- Philip Helger
-
Method Summary
Modifier and TypeMethodDescriptioncall(Class<?> aClass, ISerializationConverter<?> aConverter) Invoked for each converter.
-
Method Details
-
call
Invoked for each converter.- Parameters:
aClass- The class for which the converter was registered. Nevernull.aConverter- The main converter object. Nevernull.- Returns:
EContinue.CONTINUEto continue iteration,EContinue.BREAKto stop iteration.
-