Uses of Class
netkit.graph.io.SplitParser

Packages that use SplitParser
netkit.graph.io   
 

Uses of SplitParser in netkit.graph.io
 

Methods in netkit.graph.io that return SplitParser
static SplitParser SplitParser.getParserCOMMA(int fieldNum)
          Gets a parser that parses lines containing comma separated values, no whitespace allowed.
static SplitParser SplitParser.getParserCOMMAWS(int fieldNum)
          Gets a parser that parses lines containing comma separated values, possibly surrounded with whitespace; whitespace is ignored/removed.
static SplitParser SplitParser.getParserCSV(int fieldNum)
          Gets a parser that parses lines containing comma separated values possibly wrapped with double quotes, possibly surrounded with whitespace.
static SplitParser SplitParser.getParserWS(int fieldNum)
          Gets a parser that parses lines containing whitespace separated values, with arbitrary extra whitespace between values.
static SplitParser SplitParser.getParserWS1(int fieldNum)
          Gets a parser that parses lines containing whitespace separated values, separators are exactly one character and no extra whitespace appears anywhere in the supplied lines.