public class MapIteratorHelper
extends java.lang.Object
To iterate over a Map from C++ requires four calls per entry: hasNext(),
next(), getKey(), getValue(). This helper reduces it to one call and two
field gets per entry. It does not use a generic argument, since in C++, the
types will be erased, anyway. This is *not* a Iterator
.