Verifies that key and value are non-null, and returns a new immutable entry with those values. A call to Map.Entry#setValue on the returned entry will always throw UnsupportedOperationException.
(K key, V value)
| 128 | */ |
| 129 | |
| 130 | static <K, V> ImmutableMapEntry<K, V> entryOf(K key, V value) { |
| 131 | return new ImmutableMapEntry<K, V>(key, value); |
| 132 | } |
| 133 | |
| 134 | /** |
| 135 | * Returns a new builder. The generated builder is equivalent to the builder |