Community Tip - Did you get an answer that solved your problem? Please mark it as an Accepted Solution so others with the same problem can find the answer easily. X
How to check model parameter type on J-Link (String, int, etc.)
A bit late, but this may help.
Parameter proePar
ParamValueType parametertype = proePar.GetValue().Getdiscr();
if (parametertype.equals(ParamValueType.PARAM_STRING))
if (parametertype.equals(ParamValueType.PARAM_INTEGER))
...
