1 package org.apache.slide.util; 3 4 import java.util.Enumeration ; 5 import java.util.NoSuchElementException ; 6 7 8 13 public class EmptyEnumeration implements Enumeration  14 { 15 16 public static Enumeration INSTANCE = new EmptyEnumeration(); 17 18 private EmptyEnumeration() {} 19 20 public boolean hasMoreElements() 21 { 22 return false; 23 } 24 25 public Object nextElement() 26 { 27 throw new NoSuchElementException (); 28 } 29 30 } 31 | Popular Tags |