Package | Description |
---|---|
com.google.cloud.firestore.collection |
Modifier and Type | Class and Description |
---|---|
class |
ArraySortedMap<K,V>
This is an array backed implementation of ImmutableSortedMap.
|
class |
RBTreeSortedMap<K,V>
This is a red-black tree backed implementation of ImmutableSortedMap.
|
Modifier and Type | Method and Description |
---|---|
static <A,B,C> ImmutableSortedMap<A,C> |
ImmutableSortedMap.Builder.buildFrom(List<A> keys,
Map<B,C> values,
ImmutableSortedMap.Builder.KeyTranslator<A,B> translator,
Comparator<A> comparator) |
static <K,V> ImmutableSortedMap<K,V> |
ImmutableSortedMap.Builder.emptyMap(Comparator<K> comparator) |
static <A,B> ImmutableSortedMap<A,B> |
ImmutableSortedMap.Builder.fromMap(Map<A,B> values,
Comparator<A> comparator) |
ImmutableSortedMap<K,V> |
RBTreeSortedMap.insert(K key,
V value) |
abstract ImmutableSortedMap<K,V> |
ImmutableSortedMap.insert(K key,
V value) |
ImmutableSortedMap<K,V> |
ArraySortedMap.insert(K key,
V value) |
ImmutableSortedMap<K,V> |
RBTreeSortedMap.remove(K key) |
abstract ImmutableSortedMap<K,V> |
ImmutableSortedMap.remove(K key) |
ImmutableSortedMap<K,V> |
ArraySortedMap.remove(K key) |
Copyright © 2019 Google LLC. All rights reserved.