import java.util.*; class MyTest { private static HashMap createMultiMap(boolean identityKeys) { return new HashMap<>(identityKeys ? new HashMap<>() : Collections.emptyMap()) {}; } }