Interface DoubleFrame.DoubleToType<T>

Type Parameters:
T - the type of object the frame holds.
Enclosing class:
DoubleFrame<T>

public static interface DoubleFrame.DoubleToType<T>
Functional interface for a function mapping a double data value to the final frame type.
  • Method Summary

    Modifier and Type
    Method
    Description
    convert(double data)
    Conversion function from double to the type parameter.
  • Method Details

    • convert

      T convert(double data)
      Conversion function from double to the type parameter.
      Parameters:
      data - The double data.
      Returns:
      a new object.