Returns true if the given Object is not of Type java.util.Map.
isNotMap(obj)
returns boolean
Name | Type | Required | Default | Description |
---|---|---|---|---|
obj | any | Yes |
myMap = createObject('java','java.util.HashMap');
myMap.put('a','1');
writeOutput(isNotMap(myMap));
myStruct = {'a': 1};
writeOutput(isNotMap(myStruct));