In this show I talk and demo ways to use Java HashMaps and TreeMaps with your XPages applications.
UPDATE: April 11, 2016 –
I was just now reviewing this older show. I see one thing in the code that might work but I don’t think is quite right.
var myList:java.util.HashMap = new java.util.HashMap
That appears to be missing the “()” at the end. It really should look like this:
var myList:java.util.HashMap = new java.util.HashMap()
and of course it’s a Map and not a List so a better variable name might have been “myMap”.