MapEnumerator.definitionString Method
Returns a description of the enumerator.
public str definitionString()
The following example creates a map and an enumerator for it, and then it prints out a definition of the enumerator.
{
Map myMap = new Map(Types::Integer, Types::String);
MapEnumerator enumerator;
int i;
;
// Add some elements to the map
myMap.insert(1, "Element one");
myMap.insert(2, "Element two");
myMap.insert(3, "Element three");
myMap.insert(4, "Element Four");
// Set the enumerator
enumerator = myMap.getEnumerator();
print enumerator.definitionString();
pause;
}