ucar.netcdf
Interface DimensionIterator


public interface DimensionIterator

Type specific Iterator. Use the Iterator methods to fetch elements sequentially.

See Also:
Iterator

Method Summary
 boolean hasNext()
          Returns true if there are more elements.
 Dimension next()
          Returns the next element.
 

Method Detail

hasNext

boolean hasNext()
Returns true if there are more elements.


next

Dimension next()
Returns the next element. Calls to this method will step through successive elements.

Throws:
java.util.NoSuchElementException - If no more elements exist.