csv.TableReader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of csv Show documentation
Show all versions of csv Show documentation
A library for easily accessing CSV, Excel and and other table-like data from Java
/*
* This file is part of CSV package.
*
* CSV is free software: you can redistribute it
* and/or modify it under the terms of version 3 of the GNU
* Lesser General Public License as published by the Free Software
* Foundation.
*
* CSV is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with CSV. If not, see
* .
*/
package csv;
import java.util.Iterator;
/**
* Introduces an interface for other implementations
* of table reading interfaces.
* The Reader interface defines an important rule: header rows are never delivered
* by {@link #next()} but by {@link #getHeaderRow()} instead. All implementations
* of this class must follow this rule.
* @author RalphSchuster
*
*/
public interface TableReader extends Iterator
© 2015 - 2024 Weber Informatics LLC | Privacy Policy