Community Tip - Did you get called away in the middle of writing a post? Don't worry you can find your unfinished post later in the Drafts section of your profile page. 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))
...
