IIndexFilter
public interface IIndexFilter
Defines a filter for skipping items based on their indices.
Methods
| Method | Description |
|---|---|
| shouldSkipIndex(int index) | Determines whether the item with the specified index should be skipped. |
shouldSkipIndex(int index)
public abstract boolean shouldSkipIndex(int index)
Determines whether the item with the specified index should be skipped.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| index | int | The index of the item. |
Returns: boolean - true if the item should be skipped; otherwise, false .