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

    Modifier and Type
    Method
    Description
    com.helger.commons.state.EContinue
    call(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. Never null.
      Returns:
      EContinue.CONTINUE to continue iteration, EContinue.BREAK to stop iteration.