Informatica ActiveVOS
- Informatica ActiveVOS 9.2.6
- All Products
Function
| Description
|
---|---|
AE_JSON_NODE_UTIL.getElements( aJsonObject)
| Returns JSON objects in an array. Use this when the JSON object represents a repeating element.
|
AE_JSON_NODE_UTIL.getText( aJsonObject, aDefaultText)
| Returns the text value (the value of
$t property) given the JSON object. If the text node does not exist, the default string value is returned.
|
AE_JSON_NODE_UTIL.isXsiNil( aJsonObject)
| Returns true if the
aJsonObject element exists and it is XSI nulled.
|
AE_JSON_NODE_UTIL.getAttribute( aJsonObj, aAttributeName, aDefault)
| Returns attribute value given its name. If the attribute does not exist, the default value is returned. Normally you do not have to use this function as you can directly access JSON properties (attributes). This method is useful if your XML has a case where an element child and attribute have the same name (see restrictions above).
|