Open
Description
The Maven project has several steps to come to a resolved Model (inheritance, interpolation) where values can be symbolic (ie "${something}"). Right now it means that everything has to be a String, even if the resolved value will be an integer or a boolean.
It would be an improvement if there was something like
class Model<BLN,BT,CHR,DBL,INT,FLT,LNG,SHRT>
rawModel = new Model<String,String,String,String,String,String,String>()
resolvedModel = new Model<Byte,Boolean,Character,Double,Integer,Float,Long,Short>()
This way we don't have to do any concessions and the actual Type in the end becomes clear.
Metadata
Metadata
Assignees
Labels
No labels