Package org.ojalgo.data.transform
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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description OUT
transform(IN input)
-