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)
| 1319 | */ |
| 1320 | |
| 1321 | @GwtCompatible(serializable = true) |
| 1322 | public static <K, V> Entry<K, V> immutableEntry(@Nullable K key, @Nullable V value) { |
| 1323 | return new ImmutableEntry<K, V>(key, value); |
| 1324 | } |
| 1325 | |
| 1326 | /** |
| 1327 | * Returns an unmodifiable view of the specified set of entries. The {@link |
no outgoing calls
no test coverage detected