Interface LocalAppendableColumn.ValueSupplier<DATA_TYPE>

Enclosing class:
LocalAppendableColumn<DATA_TYPE>
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 LocalAppendableColumn.ValueSupplier<DATA_TYPE>
  • Method Summary

    Modifier and Type Method Description
    DATA_TYPE apply​(int valueIndex)
    Supply the input value at the given index.
  • Method Details

    • apply

      DATA_TYPE apply​(int valueIndex) throws IOException
      Supply the input value at the given index.
      Parameters:
      valueIndex - The value's index
      Returns:
      The value at the given index
      Throws:
      IOException - If the implementation throws IOException; this should be avoided wherever possible, but legacy code requires it.