Package manifold.csv.rt.parser
Class CsvToken
- java.lang.Object
-
- manifold.csv.rt.parser.CsvToken
-
public class CsvToken extends Object
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetData()intgetLine()intgetOffset()chargetSeparatorChar()intgetSeparatorPos()intgetTokenLength()manifold.csv.rt.parser.CsvToken.TypegetType()StringgetValue()booleanisEmpty()booleanisEof()booleanisLastInRecord()
-
-
-
Constructor Detail
-
CsvToken
public CsvToken(manifold.csv.rt.parser.CsvToken.Type type, String value, int line, int offset, int length, int separatorPos, char separatorChar)
-
-
Method Detail
-
getType
public manifold.csv.rt.parser.CsvToken.Type getType()
-
getValue
public String getValue()
-
getData
public String getData()
-
getOffset
public int getOffset()
-
getTokenLength
public int getTokenLength()
-
getLine
public int getLine()
-
getSeparatorPos
public int getSeparatorPos()
-
getSeparatorChar
public char getSeparatorChar()
-
isEmpty
public boolean isEmpty()
-
isLastInRecord
public boolean isLastInRecord()
-
isEof
public boolean isEof()
-
-