nt.java
2.2 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
import com.google.common.annotations.GwtIncompatible;
import com.google.common.collect.ImmutableSortedSet;
import com.google.common.collect.Ordering;
import com.google.common.collect.UnmodifiableIterator;
import javax.annotation.Nullable;
public final class nt<E>
extends ImmutableSortedSet<E>
{
private final ImmutableSortedSet<E> a;
public nt(ImmutableSortedSet<E> paramImmutableSortedSet)
{
super(Ordering.from(paramImmutableSortedSet.comparator()).reverse());
this.a = paramImmutableSortedSet;
}
final int a(@Nullable Object paramObject)
{
int i = this.a.a(paramObject);
if (i == -1) {
return i;
}
return size() - 1 - i;
}
final ImmutableSortedSet<E> a(E paramE, boolean paramBoolean)
{
return this.a.headSet(paramE, paramBoolean).descendingSet();
}
final ImmutableSortedSet<E> a(E paramE1, boolean paramBoolean1, E paramE2, boolean paramBoolean2)
{
return this.a.subSet(paramE2, paramBoolean2, paramE1, paramBoolean1).descendingSet();
}
final boolean a()
{
return this.a.a();
}
@GwtIncompatible("NavigableSet")
final ImmutableSortedSet<E> b()
{
throw new AssertionError("should never be called");
}
final ImmutableSortedSet<E> b(E paramE, boolean paramBoolean)
{
return this.a.tailSet(paramE, paramBoolean).descendingSet();
}
public final E ceiling(E paramE)
{
return (E)this.a.floor(paramE);
}
@GwtIncompatible("NavigableSet")
public final UnmodifiableIterator<E> descendingIterator()
{
return this.a.iterator();
}
@GwtIncompatible("NavigableSet")
public final ImmutableSortedSet<E> descendingSet()
{
return this.a;
}
public final E floor(E paramE)
{
return (E)this.a.ceiling(paramE);
}
public final E higher(E paramE)
{
return (E)this.a.lower(paramE);
}
public final UnmodifiableIterator<E> iterator()
{
return this.a.descendingIterator();
}
public final E lower(E paramE)
{
return (E)this.a.higher(paramE);
}
public final int size()
{
return this.a.size();
}
}
/* Location: /home/merong/decompile/hackery-dex2jar.jar!/nt.class
* Java compiler version: 6 (50.0)
* JD-Core Version: 0.7.1
*/