Class CSVIterator

    • Constructor Detail

      • CSVIterator

        public CSVIterator​(@Nonnull
                           CSVReader aReader)
                    throws IOException
        Parameters:
        aReader - reader for the csv data. May not be null.
        Throws:
        IOException - if unable to read data from the reader.
    • Method Detail

      • hasNext

        public boolean hasNext()
        Returns true if the iteration has more elements. In other words, returns true if next() would return an element rather than throwing an exception.
        Specified by:
        hasNext in interface Iterator<ICommonsList<String>>
        Returns:
        true if this CSVIterator has more elements.