cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - Have a PTC product question you need answered fast? Chances are someone has asked it before. Learn about the community search. X

How to check parameter type on J-Link

akirillov
4-Participant

How to check parameter type on J-Link

How to check model parameter type on J-Link (String, int, etc.)

1 REPLY 1

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))

...

Top Tags