Returns the empty map. This map behaves and performs comparably to Collections#emptyMap, and is preferable mainly for consistency and maintainability of your code.
()
| 58 | */ |
| 59 | |
| 60 | public static <K, V> ImmutableMap<K, V> of() { |
| 61 | return ImmutableBiMap.of(); |
| 62 | } |
| 63 | |
| 64 | /** |
| 65 | * Returns an immutable map containing a single entry. This map behaves and |
no test coverage detected