Java 7提供了便捷方法
Collections.emptyEnumeration()
但这在Java 6中不可用。
是否有一个空的枚举类潜伏在JDK的其他地方,或者我需要自己滚动吗?
答案 0 :(得分:17)
您只需使用
即可Collections.enumeration(Collections.emptyList());
答案 1 :(得分:5)
JDK 6中没有空的Enumeration,但您可以使用jdk 7中的源代码
/*
* taken from jdk source
* @since 1.7
*/
public static <T> Enumeration<T> emptyEnumeration() {
return (Enumeration<T>) EmptyEnumeration.EMPTY_ENUMERATION;
}
private static class EmptyEnumeration<E> implements Enumeration<E> {
static final EmptyEnumeration<Object> EMPTY_ENUMERATION
= new EmptyEnumeration<>();
public boolean hasMoreElements() { return false; }
public E nextElement() { throw new NoSuchElementException(); }
}