Interface Converter<S,T>


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

    Modifier and Type
    Method
    Description
    convert(S source)
    Convert given source element to another element.
  • Method Details

    • convert

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