Interface Splitter<T>
-
- Type Parameters:
T
- type of splitter
- All Superinterfaces:
Iterator<SplitRange<T>>
- All Known Implementing Classes:
IntegerSplitter
public interface Splitter<T> extends Iterator<SplitRange<T>>
Split iterator for type T.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
nextRangeClause()
Provides the next split clause to be used in SQL queries.-
Methods inherited from interface java.util.Iterator
forEachRemaining, hasNext, next, remove
-
-
-
-
Method Detail
-
nextRangeClause
String nextRangeClause()
Provides the next split clause to be used in SQL queries.- Returns:
- SQL clause for the range, both endpoints inclusive.
-
-