You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

Syntax
set anObject = map.getMapValue(aKey)
SemanticsGet the object from map map that is identified by akey. If the map value cannot be found, NULL is returned.
SubstitutablesanObjectThe map entry identified by aKey
map

An object of type Map.

aKeyKey value identifying the map entry.
Examples
create address;
set address = hashMap.getMapValue("John Snow");
address is an object of type Address.
  • No labels