public interface YisSymbolic
Represent a data set where Y is a symbolic values. Each symbolic value is
linked with an Integer.
-
Method Summary
Modifier and TypeMethodDescriptiongetYSymbolicValue
(int series, int item) Returns the symbolic value of the data set specified byseries
anditem
parameters.getYSymbolicValue
(Integer val) Returns the symbolic value linked with the specifiedInteger
.String[]
Returns the list of symbolic values.
-
Method Details
-
getYSymbolicValues
String[] getYSymbolicValues()Returns the list of symbolic values.- Returns:
- The symbolic values.
-
getYSymbolicValue
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.
-
getYSymbolicValue
Returns the symbolic value linked with the specifiedInteger
.- Parameters:
val
- value of the integer linked with the symbolic value.- Returns:
- The symbolic value.
-