qf$n.java
3.16 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
import com.google.common.annotations.GwtIncompatible;
import com.google.common.annotations.VisibleForTesting;
import java.util.Iterator;
import java.util.NavigableSet;
import java.util.SortedSet;
import javax.annotation.Nullable;
@GwtIncompatible("NavigableSet")
@VisibleForTesting
final class qf$n<E>
extends qf.u<E>
implements NavigableSet<E>
{
private static final long serialVersionUID = 0L;
transient NavigableSet<E> a;
qf$n(NavigableSet<E> paramNavigableSet, @Nullable Object paramObject)
{
super(paramNavigableSet, paramObject);
}
public final E ceiling(E paramE)
{
synchronized (this.h)
{
paramE = ((NavigableSet)super.c()).ceiling(paramE);
return paramE;
}
}
public final Iterator<E> descendingIterator()
{
return ((NavigableSet)super.c()).descendingIterator();
}
public final NavigableSet<E> descendingSet()
{
synchronized (this.h)
{
if (this.a == null)
{
localNavigableSet = qf.a(((NavigableSet)super.c()).descendingSet(), this.h);
this.a = localNavigableSet;
return localNavigableSet;
}
NavigableSet localNavigableSet = this.a;
return localNavigableSet;
}
}
public final E floor(E paramE)
{
synchronized (this.h)
{
paramE = ((NavigableSet)super.c()).floor(paramE);
return paramE;
}
}
public final NavigableSet<E> headSet(E paramE, boolean paramBoolean)
{
synchronized (this.h)
{
paramE = qf.a(((NavigableSet)super.c()).headSet(paramE, paramBoolean), this.h);
return paramE;
}
}
public final SortedSet<E> headSet(E paramE)
{
return headSet(paramE, false);
}
public final E higher(E paramE)
{
synchronized (this.h)
{
paramE = ((NavigableSet)super.c()).higher(paramE);
return paramE;
}
}
public final E lower(E paramE)
{
synchronized (this.h)
{
paramE = ((NavigableSet)super.c()).lower(paramE);
return paramE;
}
}
public final E pollFirst()
{
synchronized (this.h)
{
Object localObject2 = ((NavigableSet)super.c()).pollFirst();
return (E)localObject2;
}
}
public final E pollLast()
{
synchronized (this.h)
{
Object localObject2 = ((NavigableSet)super.c()).pollLast();
return (E)localObject2;
}
}
public final NavigableSet<E> subSet(E paramE1, boolean paramBoolean1, E paramE2, boolean paramBoolean2)
{
synchronized (this.h)
{
paramE1 = qf.a(((NavigableSet)super.c()).subSet(paramE1, paramBoolean1, paramE2, paramBoolean2), this.h);
return paramE1;
}
}
public final SortedSet<E> subSet(E paramE1, E paramE2)
{
return subSet(paramE1, true, paramE2, false);
}
public final NavigableSet<E> tailSet(E paramE, boolean paramBoolean)
{
synchronized (this.h)
{
paramE = qf.a(((NavigableSet)super.c()).tailSet(paramE, paramBoolean), this.h);
return paramE;
}
}
public final SortedSet<E> tailSet(E paramE)
{
return tailSet(paramE, true);
}
}
/* Location: /home/merong/decompile/hackery-dex2jar.jar!/qf$n.class
* Java compiler version: 6 (50.0)
* JD-Core Version: 0.7.1
*/