Last active
March 17, 2017 06:56
-
-
Save xgeek-net/cb98cf43ef51a72abf3fac01a141f381 to your computer and use it in GitHub Desktop.
Initialize Map
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Map<String, String> sampleMap = new Map<String, String>(); | |
sampleMap.put('key1', 'value1'); | |
sampleMap.put('key2', 'value2'); | |
sampleMap.put('key3', 'value3'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment