com.github.azbh111.utils.java.iterable.model.EmptyIterator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of utils-java Show documentation
Show all versions of utils-java Show documentation
com.github.azbh111:utils-java
The newest version!
package com.github.azbh111.utils.java.iterable.model;
import java.util.Iterator;
import java.util.NoSuchElementException;
/**
* @author: zyp
* @since: 2021/7/27 17:49
*/
public class EmptyIterator implements Iterator {
@Override
public boolean hasNext() {
return false;
}
@Override
public T next() {
throw new NoSuchElementException();
}
}