Package net.sf.clichart.data

This package contains classes for parsing tabular data from streams.

See:
          Description

Interface Summary
DataParser Interface for an object that can parse data from a stream, and pass it to a DataSink
DataSink Interface for objects that can received events containing data parsed from some source
LineParser Interface for an object that can parse a line of data, returning the field values as strings
 

Class Summary
AbstractDataParser Abstract base class for data parsers.
CsvLineParser A line parser for CSV data.
ParseUtils Static helpers for parsing values etc.
TimeDataParser Implementation of a DataParser for time-based data, i.e.
ValueDataParser A parser that uses a numeric value for the X axis.
WhiteSpaceLineParser A LineParser that splits the string based on white space
 

Exception Summary
InvalidDataException Thrown to indicate that the data in a line is not valid
 

Package net.sf.clichart.data Description

This package contains classes for parsing tabular data from streams.

To use this package directly, you would:

See the net.sf.clichart.main package for examples of using these classes.