ns.java 1.78 KB
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
 */