Package org.jfree.data
Interface YisSymbolic
- All Known Implementing Classes:
SampleXYSymbolicDataset,SampleYSymbolicDataset
public interface YisSymbolic
Represent a data set where Y is a symbolic values. Each symbolic value is
linked with an Integer.
- Author:
- Anthony Boulestreau
-
Method Summary
Modifier and Type Method Description StringgetYSymbolicValue(int series, int item)Returns the symbolic value of the data set specified byseriesanditemparameters.StringgetYSymbolicValue(Integer val)Returns the symbolic value linked with the specifiedInteger.String[]getYSymbolicValues()Returns the list of symbolic values.
-
Method Details
-
getYSymbolicValues
String[] getYSymbolicValues()Returns the list of symbolic values.- Returns:
- array of symbolic value.
-
getYSymbolicValue
Returns the symbolic value of the data set specified byseriesanditemparameters.- Parameters:
series- value of the serie.item- value of the item.- Returns:
- the symbolic value.
-
getYSymbolicValue
Returns the symbolic value linked with the specifiedInteger.- Parameters:
val- value of the integer linked with the symbolic value.- Returns:
- the symbolic value.
-