Files
react-native/ReactAndroid/src/main/java/com/facebook/react/common/MapBuilder.java
T
Oleksandr Melnykov 6c0f73b322 Format Java code in xplat/js/react-native-github
Summary:
This diff formats the Java class files inside xplat/js/react-native-github. Since google-java-format was enabled in D16071401 we want to codemode the existing code so that users don't have to deal with formatter lint noise at diff-time.

```arc f --paths-cmd 'hg files -I "**/*.java"'```

drop-conflicts

Reviewed By: cpojer

Differential Revision: D16071725

fbshipit-source-id: fc6e3852e45742c109f0c5ac4065d64201c74204
2019-07-02 04:16:46 -07:00

129 lines
3.1 KiB
Java

/**
* Copyright (c) Facebook, Inc. and its affiliates.
*
* <p>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 <K, V> HashMap<K, V> newHashMap() {
return new HashMap<K, V>();
}
/** Returns the empty map. */
public static <K, V> Map<K, V> of() {
return newHashMap();
}
/** Returns map containing a single entry. */
public static <K, V> Map<K, V> of(K k1, V v1) {
Map map = of();
map.put(k1, v1);
return map;
}
/** Returns map containing the given entries. */
public static <K, V> Map<K, V> 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 <K, V> Map<K, V> 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 <K, V> Map<K, V> 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 <K, V> Map<K, V> 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 <K, V> Map<K, V> 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 <K, V> Map<K, V> 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 <K, V> Builder<K, V> builder() {
return new Builder();
}
public static final class Builder<K, V> {
private Map mMap;
private boolean mUnderConstruction;
private Builder() {
mMap = newHashMap();
mUnderConstruction = true;
}
public Builder<K, V> put(K k, V v) {
if (!mUnderConstruction) {
throw new IllegalStateException("Underlying map has already been built");
}
mMap.put(k, v);
return this;
}
public Map<K, V> build() {
if (!mUnderConstruction) {
throw new IllegalStateException("Underlying map has already been built");
}
mUnderConstruction = false;
return mMap;
}
}
}