Package org.daisy.dotify.common.text
Class TextFileReader.LineData
- java.lang.Object
-
- org.daisy.dotify.common.text.TextFileReader.LineData
-
- Enclosing class:
- TextFileReader
public class TextFileReader.LineData extends Object
Provides the data about a single line.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String[]
getFields()
Gets the fields.String
getLine()
Gets the line as it was read.int
getLineNumber()
Gets the line number where the data was read.
-
-
-
Method Detail
-
getLine
public String getLine()
Gets the line as it was read.- Returns:
- returns the entire line as a string.
-
getFields
public String[] getFields()
Gets the fields.- Returns:
- returns the fields
-
getLineNumber
public int getLineNumber()
Gets the line number where the data was read.- Returns:
- returns the line number
-
-