Class MultimapBuilder<K0,V0>
- java.lang.Object
-
- com.google.common.collect.MultimapBuilder<K0,V0>
-
- Type Parameters:
K0- An upper bound on the key type of the generated multimap.V0- An upper bound on the value type of the generated multimap.
- Direct Known Subclasses:
MultimapBuilder.ListMultimapBuilder,MultimapBuilder.SetMultimapBuilder
@Beta @GwtCompatible public abstract class MultimapBuilder<K0,V0> extends java.lang.Object
A builder for a multimap implementation that allows customization of the backing map and value collection implementations used in a particular multimap.This can be used to easily configure multimap data structure implementations not provided explicitly in
com.google.common.collect, for example:{ @code ListMultimaptreeListMultimap = MultimapBuilder.treeKeys().arrayListValues().build(); SetMultimap hashEnumMultimap = MultimapBuilder.hashKeys().enumSetValues(MyEnum.class).build(); } MultimapBuilderinstances are immutable. Invoking a configuration method has no effect on the receiving instance; you must store and use the new builder instance it returns instead.The generated multimaps are serializable if the key and value types are serializable, unless stated otherwise in one of the configuration methods.
- Since:
- 16.0
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classMultimapBuilder.ListMultimapBuilder<K0,V0>A specialization ofMultimapBuilderthat generatesListMultimapinstances.static classMultimapBuilder.MultimapBuilderWithKeys<K0>An intermediate stage in aMultimapBuilderin which the key-value collection map implementation has been specified, but the value collection implementation has not.static classMultimapBuilder.SetMultimapBuilder<K0,V0>A specialization ofMultimapBuilderthat generatesSetMultimapinstances.static classMultimapBuilder.SortedSetMultimapBuilder<K0,V0>A specialization ofMultimapBuilderthat generatesSortedSetMultimapinstances.
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract <K extends K0,V extends V0>
Multimap<K,V>build()Returns a new, emptyMultimapwith the specified implementation.<K extends K0,V extends V0>
Multimap<K,V>build(Multimap<? extends K,? extends V> multimap)Returns aMultimapwith the specified implementation, initialized with the entries ofmultimap.static <K0 extends java.lang.Enum<K0>>
MultimapBuilder.MultimapBuilderWithKeys<K0>enumKeys(java.lang.Class<K0> keyClass)Uses anEnumMapto map keys to value collections.static MultimapBuilder.MultimapBuilderWithKeys<java.lang.Object>hashKeys()Uses aHashMapto map keys to value collections.static MultimapBuilder.MultimapBuilderWithKeys<java.lang.Object>hashKeys(int expectedKeys)Uses aHashMapto map keys to value collections, initialized to expect the specified number of keys.static MultimapBuilder.MultimapBuilderWithKeys<java.lang.Object>linkedHashKeys()Uses aLinkedHashMapto map keys to value collections.static MultimapBuilder.MultimapBuilderWithKeys<java.lang.Object>linkedHashKeys(int expectedKeys)Uses aLinkedHashMapto map keys to value collections, initialized to expect the specified number of keys.static MultimapBuilder.MultimapBuilderWithKeys<java.lang.Comparable>treeKeys()Uses a naturally-orderedTreeMapto map keys to value collections.static <K0> MultimapBuilder.MultimapBuilderWithKeys<K0>treeKeys(java.util.Comparator<K0> comparator)Uses aTreeMapsorted by the specified comparator to map keys to value collections.
-
-
-
Method Detail
-
hashKeys
public static MultimapBuilder.MultimapBuilderWithKeys<java.lang.Object> hashKeys()
Uses aHashMapto map keys to value collections.
-
hashKeys
public static MultimapBuilder.MultimapBuilderWithKeys<java.lang.Object> hashKeys(int expectedKeys)
Uses aHashMapto map keys to value collections, initialized to expect the specified number of keys.- Throws:
java.lang.IllegalArgumentException- ifexpectedKeys < 0
-
linkedHashKeys
public static MultimapBuilder.MultimapBuilderWithKeys<java.lang.Object> linkedHashKeys()
Uses aLinkedHashMapto map keys to value collections.The collections returned by
Multimap.keySet(),Multimap.keys(), andMultimap.asMap()will iterate through the keys in the order that they were first added to the multimap, save that if all values associated with a key are removed and then the key is added back into the multimap, that key will come last in the key iteration order.
-
linkedHashKeys
public static MultimapBuilder.MultimapBuilderWithKeys<java.lang.Object> linkedHashKeys(int expectedKeys)
Uses aLinkedHashMapto map keys to value collections, initialized to expect the specified number of keys.The collections returned by
Multimap.keySet(),Multimap.keys(), andMultimap.asMap()will iterate through the keys in the order that they were first added to the multimap, save that if all values associated with a key are removed and then the key is added back into the multimap, that key will come last in the key iteration order.
-
treeKeys
public static MultimapBuilder.MultimapBuilderWithKeys<java.lang.Comparable> treeKeys()
Uses a naturally-orderedTreeMapto map keys to value collections.The collections returned by
Multimap.keySet(),Multimap.keys(), andMultimap.asMap()will iterate through the keys in sorted order.For all multimaps generated by the resulting builder, the
Multimap.keySet()can be safely cast to aSortedSet, and theMultimap.asMap()can safely be cast to aSortedMap.
-
treeKeys
public static <K0> MultimapBuilder.MultimapBuilderWithKeys<K0> treeKeys(java.util.Comparator<K0> comparator)
Uses aTreeMapsorted by the specified comparator to map keys to value collections.The collections returned by
Multimap.keySet(),Multimap.keys(), andMultimap.asMap()will iterate through the keys in sorted order.For all multimaps generated by the resulting builder, the
Multimap.keySet()can be safely cast to aSortedSet, and theMultimap.asMap()can safely be cast to aSortedMap.Multimaps generated by the resulting builder will not be serializable if
comparatoris not serializable.
-
enumKeys
public static <K0 extends java.lang.Enum<K0>> MultimapBuilder.MultimapBuilderWithKeys<K0> enumKeys(java.lang.Class<K0> keyClass)
Uses anEnumMapto map keys to value collections.
-
build
public abstract <K extends K0,V extends V0> Multimap<K,V> build()
Returns a new, emptyMultimapwith the specified implementation.
-
-