public class UberMaps
extends java.lang.Object
| Modifier and Type | Class and Description |
|---|---|
static class |
UberMaps.Entry<K,V>
Immutable implementation of
Map.Entry. |
| Modifier and Type | Method and Description |
|---|---|
static <K,V> UberMaps.Entry<K,V> |
entry(K key,
V val)
Create instance of the
UberMaps.Entry that implements Map.Entry. |
static <K,V> UberMaps.Entry<K,V> |
entry(java.util.Map.Entry<K,V> e)
Create instance of the
UberMaps.Entry with key and value from the specified entry. |
public static <K,V> UberMaps.Entry<K,V> entry(java.util.Map.Entry<K,V> e)
Create instance of the UberMaps.Entry with key and value from the specified entry.
Note: result entry is immutable!
entry(Object, Object)public static <K,V> UberMaps.Entry<K,V> entry(K key, V val)
Create instance of the UberMaps.Entry that implements Map.Entry.
Note: result entry is immutable!