Interface BaseInputOutPutConvertors.IInputConversionFunction

  • Enclosing class:
    BaseInputOutPutConvertors
    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 static interface BaseInputOutPutConvertors.IInputConversionFunction
    A functional interface for providing conversion of raw input to an array of double values.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      double[] convert​(byte[] input, int offset, int length)
      A method that converts a raw byte array to an array of double values.
    • Method Detail

      • convert

        double[] convert​(byte[] input,
                         int offset,
                         int length)
        A method that converts a raw byte array to an array of double values.
        Parameters:
        input - the raw data
        offset - where to start processing
        length - how many bytes to process
        Returns:
        an array of double values