Package org.jfree.data.xy
Interface YisSymbolic
-
public interface YisSymbolicRepresent a data set where Y is a symbolic values. Each symbolic value is linked with an Integer.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetYSymbolicValue(int series, int item)Returns the symbolic value of the data set specified byseriesanditemparameters.java.lang.StringgetYSymbolicValue(java.lang.Integer val)Returns the symbolic value linked with the specifiedInteger.java.lang.String[]getYSymbolicValues()Returns the list of symbolic values.
-
-
-
Method Detail
-
getYSymbolicValues
java.lang.String[] getYSymbolicValues()
Returns the list of symbolic values.- Returns:
- The symbolic values.
-
getYSymbolicValue
java.lang.String getYSymbolicValue(int series, int item)Returns the symbolic value of the data set specified byseriesanditemparameters.- Parameters:
series- the series index (zero-based).item- the item index (zero-based).- Returns:
- The symbolic value.
-
getYSymbolicValue
java.lang.String getYSymbolicValue(java.lang.Integer val)
Returns the symbolic value linked with the specifiedInteger.- Parameters:
val- value of the integer linked with the symbolic value.- Returns:
- The symbolic value.
-
-