All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.codefilarete.tool.collection.ReverseArrayIterator Maven / Gradle / Ivy

package org.codefilarete.tool.collection;

import java.util.NoSuchElementException;

/**
 * @author Guillaume Mary
 */
public class ReverseArrayIterator extends ReadOnlyIterator {
	
	private final E[] iterable;
	
	private int currentIndex;
	
	public ReverseArrayIterator(E[] iterable) {
		this.iterable = iterable;
		this.currentIndex = iterable.length;
	}
	
	@Override
	public boolean hasNext() {
		return currentIndex > 0;
	}
	
	@Override
	public E next() {
		if (!hasNext()) {
			// this is necessary to be compliant with Iterator#next(..) contract
			throw new NoSuchElementException();
		}
		return iterable[--currentIndex];
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy