ForwardingMultimap.java
2.59 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
package com.google.common.collect;
import com.google.common.annotations.GwtCompatible;
import java.util.Collection;
import java.util.Map;
import java.util.Map.Entry;
import java.util.Set;
import javax.annotation.Nullable;
@GwtCompatible
public abstract class ForwardingMultimap<K, V>
extends ForwardingObject
implements Multimap<K, V>
{
public Map<K, Collection<V>> asMap()
{
return delegate().asMap();
}
public void clear()
{
delegate().clear();
}
public boolean containsEntry(@Nullable Object paramObject1, @Nullable Object paramObject2)
{
return delegate().containsEntry(paramObject1, paramObject2);
}
public boolean containsKey(@Nullable Object paramObject)
{
return delegate().containsKey(paramObject);
}
public boolean containsValue(@Nullable Object paramObject)
{
return delegate().containsValue(paramObject);
}
protected abstract Multimap<K, V> delegate();
public Collection<Map.Entry<K, V>> entries()
{
return delegate().entries();
}
public boolean equals(@Nullable Object paramObject)
{
return (paramObject == this) || (delegate().equals(paramObject));
}
public Collection<V> get(@Nullable K paramK)
{
return delegate().get(paramK);
}
public int hashCode()
{
return delegate().hashCode();
}
public boolean isEmpty()
{
return delegate().isEmpty();
}
public Set<K> keySet()
{
return delegate().keySet();
}
public Multiset<K> keys()
{
return delegate().keys();
}
public boolean put(K paramK, V paramV)
{
return delegate().put(paramK, paramV);
}
public boolean putAll(Multimap<? extends K, ? extends V> paramMultimap)
{
return delegate().putAll(paramMultimap);
}
public boolean putAll(K paramK, Iterable<? extends V> paramIterable)
{
return delegate().putAll(paramK, paramIterable);
}
public boolean remove(@Nullable Object paramObject1, @Nullable Object paramObject2)
{
return delegate().remove(paramObject1, paramObject2);
}
public Collection<V> removeAll(@Nullable Object paramObject)
{
return delegate().removeAll(paramObject);
}
public Collection<V> replaceValues(K paramK, Iterable<? extends V> paramIterable)
{
return delegate().replaceValues(paramK, paramIterable);
}
public int size()
{
return delegate().size();
}
public Collection<V> values()
{
return delegate().values();
}
}
/* Location: /home/merong/decompile/hackery-dex2jar.jar!/com/google/common/collect/ForwardingMultimap.class
* Java compiler version: 6 (50.0)
* JD-Core Version: 0.7.1
*/