Is this a valid Syntax to call Switch case in jRules? ruleset r { int count; } flowtask main { body = { switch(count) { case 1: { T1; } case 3: { T2; } default: { T3; } } } };
True
False