Interface IndexRange
- All Known Subinterfaces:
IndexRangeSeek
public interface IndexRange
A range of discrete integers with a minimum and a maximum.
- Author:
- Owen Feehan
-
Method Summary
Modifier and TypeMethodDescriptionint
The maximum index in the range.int
The minimum index in the range.
-
Method Details
-
getMinimumIndex
int getMinimumIndex()The minimum index in the range.- Returns:
- the minimum index (inclusive).
-
getMaximumIndex
int getMaximumIndex()The maximum index in the range.- Returns:
- the maximum index (inclusive).
-