mz.java
3.5 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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
import com.google.common.collect.Iterators;
import com.google.common.collect.Maps;
import com.google.common.collect.Maps.d;
import com.google.common.collect.Maps.f;
import com.google.common.collect.Maps.q;
import java.util.AbstractMap;
import java.util.Iterator;
import java.util.Map;
import java.util.Map.Entry;
import java.util.NavigableMap;
import java.util.NavigableSet;
import java.util.NoSuchElementException;
import java.util.Set;
import java.util.SortedMap;
import javax.annotation.Nullable;
public abstract class mz<K, V>
extends AbstractMap<K, V>
implements NavigableMap<K, V>
{
public abstract Iterator<Map.Entry<K, V>> a();
public abstract Iterator<Map.Entry<K, V>> b();
@Nullable
public Map.Entry<K, V> ceilingEntry(K paramK)
{
return tailMap(paramK, true).firstEntry();
}
public K ceilingKey(K paramK)
{
return (K)Maps.b(ceilingEntry(paramK));
}
public NavigableSet<K> descendingKeySet()
{
return descendingMap().navigableKeySet();
}
public NavigableMap<K, V> descendingMap()
{
return new mz.a((byte)0);
}
public Set<Map.Entry<K, V>> entrySet()
{
new Maps.f()
{
final Map<K, V> a()
{
return mz.this;
}
public final Iterator<Map.Entry<K, V>> iterator()
{
return mz.this.a();
}
};
}
@Nullable
public Map.Entry<K, V> firstEntry()
{
return (Map.Entry)Iterators.getNext(a(), null);
}
public K firstKey()
{
Map.Entry localEntry = firstEntry();
if (localEntry == null) {
throw new NoSuchElementException();
}
return (K)localEntry.getKey();
}
@Nullable
public Map.Entry<K, V> floorEntry(K paramK)
{
return headMap(paramK, true).lastEntry();
}
public K floorKey(K paramK)
{
return (K)Maps.b(floorEntry(paramK));
}
public SortedMap<K, V> headMap(K paramK)
{
return headMap(paramK, false);
}
@Nullable
public Map.Entry<K, V> higherEntry(K paramK)
{
return tailMap(paramK, false).firstEntry();
}
public K higherKey(K paramK)
{
return (K)Maps.b(higherEntry(paramK));
}
public Set<K> keySet()
{
return navigableKeySet();
}
@Nullable
public Map.Entry<K, V> lastEntry()
{
return (Map.Entry)Iterators.getNext(b(), null);
}
public K lastKey()
{
Map.Entry localEntry = lastEntry();
if (localEntry == null) {
throw new NoSuchElementException();
}
return (K)localEntry.getKey();
}
@Nullable
public Map.Entry<K, V> lowerEntry(K paramK)
{
return headMap(paramK, false).lastEntry();
}
public K lowerKey(K paramK)
{
return (K)Maps.b(lowerEntry(paramK));
}
public NavigableSet<K> navigableKeySet()
{
return new Maps.q(this);
}
@Nullable
public Map.Entry<K, V> pollFirstEntry()
{
return (Map.Entry)Iterators.a(a());
}
@Nullable
public Map.Entry<K, V> pollLastEntry()
{
return (Map.Entry)Iterators.a(b());
}
public SortedMap<K, V> subMap(K paramK1, K paramK2)
{
return subMap(paramK1, true, paramK2, false);
}
public SortedMap<K, V> tailMap(K paramK)
{
return tailMap(paramK, true);
}
final class a
extends Maps.d<K, V>
{
private a() {}
final NavigableMap<K, V> a()
{
return mz.this;
}
final Iterator<Map.Entry<K, V>> entryIterator()
{
return mz.this.b();
}
}
}
/* Location: /home/merong/decompile/hackery-dex2jar.jar!/mz.class
* Java compiler version: 6 (50.0)
* JD-Core Version: 0.7.1
*/