Returns an immutable map entry with the specified key and value. The Entry#setValue operation throws an UnsupportedOperationException. The returned entry is serializable. @param key the key to be associated with the returned entry @param value the value to be associated with the
(@Nullable K key, @Nullable V value)
| 1291 | * @param value the value to be associated with the returned entry |
| 1292 | */ |
| 1293 | @GwtCompatible(serializable = true) |
| 1294 | public static <K, V> Entry<K, V> immutableEntry(@Nullable K key, @Nullable V value) { |
| 1295 | return new ImmutableEntry<K, V>(key, value); |
| 1296 | } |
| 1297 | |
| 1298 | /** |
| 1299 | * Returns an unmodifiable view of the specified set of entries. The {@link |
no outgoing calls
no test coverage detected