IIndexFilter

public interface IIndexFilter

Defines a filter for skipping items based on their indices.

Methods

MethodDescription
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:

ParameterTypeDescription
indexintThe index of the item.

Returns: boolean - true if the item should be skipped; otherwise, false .