Interface Enumeration<E>

hasMoreElements()

  boolean hasMoreElements()    仅当此枚举对象包含至少一个以上元素为真;否则为假。

nextElement()

  E nextElement()    此枚举的下一个元素。

  Throws:NoSunchException - if no more elements exist.

05-07 15:44