Skip to content

parameterMap.get

Signature: parameterMap.get(key)

Returns: String parameterValue - the value in the parameter map associated with the given key

Retrieves a value from the parameter map assigned to the key.

Parameters

Type Name Description Default
String key the key name for this value

Example

var parameterMap = qie.newParameterMap();
parameterMap.put("theKey", "theValue");
parameterMap.put("filename", "importantDocument.pdf");
parameterMap.put("keystone", new java.lang.Object());
var theKeysValue = parameterMap.get('theKey');