Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Creates a new map.
Syntax
public void new(Types key, Types value)
Run On
Called
Parameters
- key
Type: Types Enumeration
The type of the keys.
- value
Type: Types Enumeration
The type of the values.
Examples
The following example creates a map that maps string keys onto integer values.
Map myMap = new Map(Types::String, Types::Integer);