ns.java
1.78 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
import com.google.common.collect.BoundType;
import com.google.common.collect.ImmutableList;
import com.google.common.collect.ImmutableSet;
import com.google.common.collect.ImmutableSortedMultiset;
import com.google.common.collect.ImmutableSortedSet;
import com.google.common.collect.Multiset.Entry;
import javax.annotation.Nullable;
public final class ns<E>
extends ImmutableSortedMultiset<E>
{
private final transient ImmutableSortedMultiset<E> b;
public ns(ImmutableSortedMultiset<E> paramImmutableSortedMultiset)
{
this.b = paramImmutableSortedMultiset;
}
final Multiset.Entry<E> a(int paramInt)
{
return (Multiset.Entry)this.b.entrySet().asList().reverse().get(paramInt);
}
final boolean a()
{
return this.b.a();
}
public final int count(@Nullable Object paramObject)
{
return this.b.count(paramObject);
}
public final ImmutableSortedMultiset<E> descendingMultiset()
{
return this.b;
}
public final ImmutableSortedSet<E> elementSet()
{
return this.b.elementSet().descendingSet();
}
public final Multiset.Entry<E> firstEntry()
{
return this.b.lastEntry();
}
public final ImmutableSortedMultiset<E> headMultiset(E paramE, BoundType paramBoundType)
{
return this.b.tailMultiset(paramE, paramBoundType).descendingMultiset();
}
public final Multiset.Entry<E> lastEntry()
{
return this.b.firstEntry();
}
public final int size()
{
return this.b.size();
}
public final ImmutableSortedMultiset<E> tailMultiset(E paramE, BoundType paramBoundType)
{
return this.b.headMultiset(paramE, paramBoundType).descendingMultiset();
}
}
/* Location: /home/merong/decompile/hackery-dex2jar.jar!/ns.class
* Java compiler version: 6 (50.0)
* JD-Core Version: 0.7.1
*/