| Class | Line # | Actions | |||||
|---|---|---|---|---|---|---|---|
| RowIndexToValue | 11 | 0 | - | 0 | 0 |
| 1 | package guru.mikelue.foxglove.functional; | |
| 2 | ||
| 3 | import java.util.function.Function; | |
| 4 | ||
| 5 | /** | |
| 6 | * This interface defines the action to convert a row index to a value. | |
| 7 | * | |
| 8 | * @param <T> Type of value to be provided | |
| 9 | */ | |
| 10 | @FunctionalInterface | |
| 11 | public interface RowIndexToValue<T> extends Function<Integer, T> {} |