-
- 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 ProgramGetter
An functional interface to use for getting programs for an index.- Since:
- 3.4.5
- Author:
- René Mach
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Program
getProgram(int index)
-
-
-
Method Detail
-
getProgram
Program getProgram(int index)
- Parameters:
index
- The index to get the Program for.- Returns:
- The program at the index or
null
if there is no program at the index
-
-