Interface ILcdMorphingFunction<T,S>


public interface ILcdMorphingFunction<T,S>
This interface specifies a method that transforms a given object and returns the result.
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    morph(T aObject)
    Transforms a given object and returns the result.
  • Method Details

    • morph

      S morph(T aObject)
      Transforms a given object and returns the result.
      Parameters:
      aObject - the input object.
      Returns:
      the resulting transformed object.