net.sf.staccatocommons.iterators.EmptyThriterator Maven / Gradle / Ivy
/**
* Copyright (c) 2010-2012, The StaccatoCommons Team
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; version 3 of the License.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*/
package net.sf.staccatocommons.iterators;
import java.util.NoSuchElementException;
import net.sf.staccatocommons.iterators.thriter.AbstractThriterator;
import net.sf.staccatocommons.iterators.thriter.Thriterator;
import net.sf.staccatocommons.restrictions.Constant;
/**
* An iterator that retrieves no elements. Calling {@link #hasNext()} will
* always return false, and calling {@link #next()} will throw a
* {@link NoSuchElementException}
*
* @author flbulgarelli
* @param
* the element type
*
*/
public final class EmptyThriterator extends AbstractThriterator {
@Override
public boolean hasNext() {
return false;
}
@Override
public T next() {
throw new NoSuchElementException("Empty Iterator");
}
public void advanceNext() throws NoSuchElementException {
next();
}
public T current() throws NoSuchElementException {
return next();
}
/**
* @param
* the type of the iterator element
* @return the singleton instance
*/
@Constant
public static Thriterator empty() {
return new EmptyThriterator();
}
}