Package | Description |
---|---|
com.google.common.collect |
This package contains generic collection interfaces and implementations, and other utilities for
working with collections.
|
Modifier and Type | Class and Description |
---|---|
static class |
MultimapBuilder.SortedSetMultimapBuilder<K0,V0>
A specialization of
MultimapBuilder that generates SortedSetMultimap instances. |
Modifier and Type | Method and Description |
---|---|
<V0 extends Enum<V0>> |
MultimapBuilder.MultimapBuilderWithKeys.enumSetValues(Class<V0> valueClass)
Uses an
EnumSet to store value collections. |
MultimapBuilder.SetMultimapBuilder<K0,Object> |
MultimapBuilder.MultimapBuilderWithKeys.hashSetValues()
Uses a hash-based
Set to store value collections. |
MultimapBuilder.SetMultimapBuilder<K0,Object> |
MultimapBuilder.MultimapBuilderWithKeys.hashSetValues(int expectedValuesPerKey)
Uses a hash-based
Set to store value collections, initialized to expect the specified
number of values per key. |
MultimapBuilder.SetMultimapBuilder<K0,Object> |
MultimapBuilder.MultimapBuilderWithKeys.linkedHashSetValues()
Uses an insertion-ordered hash-based
Set to store value collections. |
MultimapBuilder.SetMultimapBuilder<K0,Object> |
MultimapBuilder.MultimapBuilderWithKeys.linkedHashSetValues(int expectedValuesPerKey)
Uses an insertion-ordered hash-based
Set to store value collections, initialized to
expect the specified number of values per key. |
Copyright © 2010–2019. All rights reserved.