OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ListMultimap
(Results
1 - 6
of
6
) sorted by null
/external/guava/src/com/google/common/collect/
ListMultimap.java
39
public interface
ListMultimap
<K, V> extends Multimap<K, V> {
78
* <p>Two {@code
ListMultimap
} instances are equal if, for each key, they
AbstractListMultimap.java
28
* Basic implementation of the {@link
ListMultimap
} interface. It's a wrapper
38
extends AbstractMultimap<K, V> implements
ListMultimap
<K, V> {
78
* <p>Two {@code
ListMultimap
} instances are equal if, for each key, they
Multimaps.java
138
* Creates a new {@code
ListMultimap
} that uses the provided map and factory.
174
public static <K, V>
ListMultimap
<K, V> newListMultimap(
614
extends UnmodifiableMultimap<K, V> implements
ListMultimap
<K, V> {
615
UnmodifiableListMultimap(
ListMultimap
<K, V> delegate) {
618
@Override public
ListMultimap
<K, V> delegate() {
619
return (
ListMultimap
<K, V>) super.delegate();
767
* Returns a synchronized (thread-safe) {@code
ListMultimap
} backed by the
775
public static <K, V>
ListMultimap
<K, V> synchronizedListMultimap(
776
ListMultimap
<K, V> multimap) {
777
return Synchronized.
listMultimap
(multimap, null)
[
all
...]
Synchronized.java
784
public static <K, V>
ListMultimap
<K, V>
listMultimap
(
785
ListMultimap
<K, V> multimap, @Nullable Object mutex) {
789
/** @see Synchronized#
listMultimap
*/
791
extends SynchronizedMultimap<K, V> implements
ListMultimap
<K, V> {
793
ListMultimap
<K, V> delegate, @Nullable Object mutex) {
796
@Override protected
ListMultimap
<K, V> delegate() {
797
return (
ListMultimap
<K, V>) super.delegate();
[
all
...]
ImmutableListMultimap.java
31
* An immutable {@link
ListMultimap
} with reliable user-specified key and value
34
* <p>Unlike {@link Multimaps#unmodifiableListMultimap(
ListMultimap
)}, which is
52
implements
ListMultimap
<K, V> {
137
* A builder for creating immutable {@code
ListMultimap
} instances, especially
LinkedListMultimap.java
48
* An implementation of {@code
ListMultimap
} that supports deterministic
97
implements
ListMultimap
<K, V>, Serializable {
886
* <p>Two {@code
ListMultimap
} instances are equal if, for each key, they
Completed in 64 milliseconds