Interface Converter<S,​T>


  • @OpenApiAll
    public interface Converter<S,​T>
    Conversion of one element to another function.
    • Method Detail

      • convert

        T convert​(S source)
        Convert given source element to another element.
        Parameters:
        source - element to convert.
        Returns:
        converted element.