ne.java 1.44 KB
import com.google.common.annotations.GwtCompatible;
import com.google.common.collect.ImmutableSortedSet;
import com.google.common.collect.SortedSetMultimap;
import java.util.Collection;
import java.util.Collections;
import java.util.Map;
import java.util.SortedSet;
import javax.annotation.Nullable;

@GwtCompatible
public abstract class ne<K, V>
  extends nb<K, V>
  implements SortedSetMultimap<K, V>
{
  private static final long serialVersionUID = 430848587173315748L;
  
  protected ne(Map<K, Collection<V>> paramMap)
  {
    super(paramMap);
  }
  
  private SortedSet<V> m()
  {
    if (valueComparator() == null) {
      return Collections.unmodifiableSortedSet(n());
    }
    return ImmutableSortedSet.a(valueComparator());
  }
  
  public Map<K, Collection<V>> asMap()
  {
    return super.asMap();
  }
  
  public SortedSet<V> get(@Nullable K paramK)
  {
    return (SortedSet)super.get(paramK);
  }
  
  protected abstract SortedSet<V> n();
  
  public SortedSet<V> removeAll(@Nullable Object paramObject)
  {
    return (SortedSet)super.removeAll(paramObject);
  }
  
  public SortedSet<V> replaceValues(@Nullable K paramK, Iterable<? extends V> paramIterable)
  {
    return (SortedSet)super.replaceValues(paramK, paramIterable);
  }
  
  public Collection<V> values()
  {
    return super.values();
  }
}


/* Location:              /home/merong/decompile/hackery-dex2jar.jar!/ne.class
 * Java compiler version: 6 (50.0)
 * JD-Core Version:       0.7.1
 */