Interface DataMapper<T extends Data>
-
public interface DataMapper<T extends Data>This interface defines mapping of data from displayable data to real datasets. This mostly will be implemented by enums defining a concrete dataset configuration.The returned values should all be of the same length.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<java.lang.Double>getValues(T data)return the values
-
-
-
Method Detail
-
getValues
java.util.List<java.lang.Double> getValues(T data)
return the values
-
-