Package | com.ericfeminella.collections |
Interface | public interface IEnumeration |
Implementors | StringTokenizer |
Method | Defined by | ||
---|---|---|---|
hasMoreElements():Boolean
Determines if there are remaining elements in the object
| IEnumeration | ||
nextElement():*
Retrieves the next element in the Enumeration.
| IEnumeration |
hasMoreElements | () | method |
public function hasMoreElements():Boolean
Determines if there are remaining elements in the object
ReturnsBoolean — true if elements remain, otherwise false
|
nextElement | () | method |
public function nextElement():*
Retrieves the next element in the Enumeration. If no other elements exist a null value is returned or an exception is thrown
Returns* — the next element in the enumeration
|