Package org.jfree.data.xy
Interface YisSymbolic
-
public interface YisSymbolic
Represent 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 String
getYSymbolicValue(int series, int item)
Returns the symbolic value of the data set specified byseries
anditem
parameters.String
getYSymbolicValue(Integer val)
Returns the symbolic value linked with the specifiedInteger
.String[]
getYSymbolicValues()
Returns the list of symbolic values.
-
-
-
Method Detail
-
getYSymbolicValues
String[] getYSymbolicValues()
Returns the list of symbolic values.- Returns:
- The symbolic values.
-
getYSymbolicValue
String getYSymbolicValue(int series, int item)
Returns the symbolic value of the data set specified byseries
anditem
parameters.- Parameters:
series
- the series index (zero-based).item
- the item index (zero-based).- Returns:
- The symbolic value.
-
-