Android
java.util
public interface

java.util.Enumeration<E>

java.util.Enumeration<E>

An Enumeration is used to sequence over a collection of objects.

Known Indirect Subclasses

Summary

Public Methods

          boolean  hasMoreElements()
Returns if this Enumeration has more elements.
          nextElement()
Returns the next element in this Enumeration.

Details

Public Methods

public boolean hasMoreElements()

Returns if this Enumeration has more elements.

Returns

  • true if there are more elements, false otherwise

See Also

public E nextElement()

Returns the next element in this Enumeration.

Returns

  • the next element in this Enumeration

Throws

NoSuchElementException when there are no more elements
Copyright 2007 Google Inc. Build 0.9_r1-98467 - 14 Aug 2008 18:56