/** * Copyright (c) Facebook, Inc. and its affiliates. * *

This source code is licensed under the MIT license found in the LICENSE file in the root * directory of this source tree. */ package com.facebook.react.common; import java.util.HashMap; import java.util.Map; /** Utility class for creating maps */ public class MapBuilder { /** Creates an instance of {@code HashMap} */ public static HashMap newHashMap() { return new HashMap(); } /** Returns the empty map. */ public static Map of() { return newHashMap(); } /** Returns map containing a single entry. */ public static Map of(K k1, V v1) { Map map = of(); map.put(k1, v1); return map; } /** Returns map containing the given entries. */ public static Map of(K k1, V v1, K k2, V v2) { Map map = of(); map.put(k1, v1); map.put(k2, v2); return map; } /** Returns map containing the given entries. */ public static Map of(K k1, V v1, K k2, V v2, K k3, V v3) { Map map = of(); map.put(k1, v1); map.put(k2, v2); map.put(k3, v3); return map; } /** Returns map containing the given entries. */ public static Map of(K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4) { Map map = of(); map.put(k1, v1); map.put(k2, v2); map.put(k3, v3); map.put(k4, v4); return map; } /** Returns map containing the given entries. */ public static Map of(K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5) { Map map = of(); map.put(k1, v1); map.put(k2, v2); map.put(k3, v3); map.put(k4, v4); map.put(k5, v5); return map; } /** Returns map containing the given entries. */ public static Map of( K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5, K k6, V v6) { Map map = of(); map.put(k1, v1); map.put(k2, v2); map.put(k3, v3); map.put(k4, v4); map.put(k5, v5); map.put(k6, v6); return map; } /** Returns map containing the given entries. */ public static Map of( K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5, K k6, V v6, K k7, V v7) { Map map = of(); map.put(k1, v1); map.put(k2, v2); map.put(k3, v3); map.put(k4, v4); map.put(k5, v5); map.put(k6, v6); map.put(k7, v7); return map; } /** Returns map containing the given entries. */ public static Builder builder() { return new Builder(); } public static final class Builder { private Map mMap; private boolean mUnderConstruction; private Builder() { mMap = newHashMap(); mUnderConstruction = true; } public Builder put(K k, V v) { if (!mUnderConstruction) { throw new IllegalStateException("Underlying map has already been built"); } mMap.put(k, v); return this; } public Map build() { if (!mUnderConstruction) { throw new IllegalStateException("Underlying map has already been built"); } mUnderConstruction = false; return mMap; } } }