Package | Description |
---|---|
com.google.common.collect |
This package contains generic collection interfaces and implementations, and
other utilities for working with collections.
|
Modifier and Type | Field and Description |
---|---|
(package private) ImmutableMapEntry.TerminalEntry<K,V>[] |
ImmutableMap.Builder.entries |
Modifier and Type | Method and Description |
---|---|
(package private) static <K,V> ImmutableMapEntry.TerminalEntry<K,V> |
ImmutableMap.entryOf(K key,
V value)
Verifies that
key and value are non-null, and returns a new
immutable entry with those values. |
Constructor and Description |
---|
RegularImmutableBiMap(ImmutableMapEntry.TerminalEntry<?,?>... entriesToAdd) |
RegularImmutableBiMap(int n,
ImmutableMapEntry.TerminalEntry<?,?>[] entriesToAdd)
Constructor for RegularImmutableBiMap that takes as input an array of
TerminalEntry
entries. |
RegularImmutableMap(ImmutableMapEntry.TerminalEntry<?,?>... theEntries) |
RegularImmutableMap(int size,
ImmutableMapEntry.TerminalEntry<?,?>[] theEntries)
Constructor for RegularImmutableMap that takes as input an array of
TerminalEntry
entries. |