Example usage for org.apache.commons.collections.iterators AbstractIteratorDecorator subclass-usage

List of usage examples for org.apache.commons.collections.iterators AbstractIteratorDecorator subclass-usage

Introduction

In this page you can find the example usage for org.apache.commons.collections.iterators AbstractIteratorDecorator subclass-usage.

Usage

From source file org.paxml.util.RangedIterator.java

public class RangedIterator<T> extends AbstractIteratorDecorator {
    private int index;
    private final int to;

    public RangedIterator(int from, int to, Iterator<T> it) {
        super(it);

From source file org.paxml.util.CachedIterator.java

public class CachedIterator<T> extends AbstractIteratorDecorator {

    private int cacheSize;

    public CachedIterator(int cacheSize, Iterator iterator) {
        super(iterator);

From source file com.cyclopsgroup.waterview.utils.FixedSizeIterator.java

/**
 * @author <a href="mailto:jiaqi.guo@gmail.com">Jiaqi Guo</a>
 *
 * Iterator with a max size
 */
public class FixedSizeIterator extends AbstractIteratorDecorator {