All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.nicosensei.textbatch.input.InputLine Maven / Gradle / Ivy

/**
 *
 */
package com.github.nicosensei.textbatch.input;

/**
 * Base class for a line in a input file. A line is constituted of a number
 * of fields separated by a given separator string.
 *
 * @author ngiraud
 *
 */
public interface InputLine {

    /**
     * @return the line as is.
     */
    String getLine();

    /**
     * @return the separator string
     */
    String getSeparator();

    /**
     * @return the fields
     */
    String[] getFields();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy