:: com :: sun :: star :: container ::

interface XEnumeration

Methods' Summary
hasMoreElements tests whether this enumeration contains more elements.  
nextElement  
Methods' Details
hasMoreElements
boolean
hasMoreElements();

Description
tests whether this enumeration contains more elements.
nextElement
any
nextElement()
raises( NoSuchElementException,
::com::sun::star::lang::WrappedTargetException );

Returns
the next element of this enumeration.
Throws
NoSuchElementException if no more elements exist.
Throws
com::sun::star::lang::WrappedTargetException If the implementation has internal reasons for exceptions, then wrap these in a ::com::sun::star::lang::WrappedTargetException exception.
Top of Page