Interface DataTransform<IN,OUT>

All Known Implementing Classes:
DiscreteFourierTransform, DiscreteFourierTransform.FFT, DiscreteFourierTransform.FullMatrix, DiscreteFourierTransform.Single, ZTransform
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 DataTransform<IN,OUT>
DataTransform is a functional interface that can be used to transform data. The transform method takes an input of type IN and returns an output of type OUT.
  • Method Summary

    Modifier and Type
    Method
    Description
    transform(IN input)
     
  • Method Details

    • transform

      OUT transform(IN input)