Class FileIterator

java.lang.Object
org.codehaus.groovy.ant.FileIterator
All Implemented Interfaces:
Iterator<File>

public class FileIterator extends Object implements Iterator<File>

FileIterator is an iterator over a number of files from a collection of FileSet instances.

  • Constructor Details

    • FileIterator

      public FileIterator(org.apache.tools.ant.Project project, Iterator<org.apache.tools.ant.types.FileSet> fileSetIterator)
    • FileIterator

      public FileIterator(org.apache.tools.ant.Project project, Iterator<org.apache.tools.ant.types.FileSet> fileSetIterator, boolean iterateDirectories)
  • Method Details

    • hasNext

      public boolean hasNext()
      Specified by:
      hasNext in interface Iterator<File>
      Returns:
      true if there is another object that matches the given predicate
    • next

      public File next()
      Specified by:
      next in interface Iterator<File>
      Returns:
      the next object which matches the given predicate
    • remove

      public void remove()
      throws UnsupportedOperationException
      Specified by:
      remove in interface Iterator<File>