static L valuesList(Map map) { ret cloneListSynchronizingOn(values(map), map); } ifclass MultiMap static L valuesList(MultiMap mm) { ret mm == null ? emptyList() : concatLists(values(mm.data)); } endif