Interface ITypeConverter<SRC,​DST>

    • Method Detail

      • apply

        @Nullable
        DST apply​(@Nonnull
                  SRC aSource)
        Convert the passed source object to the destination type.
        Specified by:
        apply in interface Function<SRC,​DST>
        Parameters:
        aSource - The source object to be converted. Cannot be null because the type converter already filters null values!
        Returns:
        The converted value. May be null.