Creates a new, empty LinkedHashMultimap with the default initial capacities.
()
| 88 | */ |
| 89 | |
| 90 | public static <K, V> LinkedHashMultimap<K, V> create() { |
| 91 | return new LinkedHashMultimap<K, V>(DEFAULT_KEY_CAPACITY, DEFAULT_VALUE_SET_CAPACITY); |
| 92 | } |
| 93 | |
| 94 | /** |
| 95 | * Constructs an empty {@code LinkedHashMultimap} with enough capacity to hold |