package com.google.common.collect;

import com.google.common.base.Preconditions;
import java.util.Comparator;
import java.util.Map.Entry;
import javax.annotation.Nullable;

final class EmptyImmutableSortedMap<K, V> extends ImmutableSortedMap<K, V>
{
  private final transient ImmutableSortedSet<K> keySet;

  EmptyImmutableSortedMap(Comparator<? super K> paramComparator)
  {
    this.keySet = ImmutableSortedSet.emptySet(paramComparator);
  }

  ImmutableSet<Map.Entry<K, V>> createEntrySet()
  {
    throw new AssertionError("should never be called");
  }

  public ImmutableSet<Map.Entry<K, V>> entrySet()
  {
    return ImmutableSet.of();
  }

  public V get(@Nullable Object paramObject)
  {
    return null;
  }

  public ImmutableSortedMap<K, V> headMap(K paramK, boolean paramBoolean)
  {
    Preconditions.checkNotNull(paramK);
    return this;
  }

  public boolean isEmpty()
  {
    return true;
  }

  boolean isPartialView()
  {
    return false;
  }

  public ImmutableSortedSet<K> keySet()
  {
    return this.keySet;
  }

  public int size()
  {
    return 0;
  }

  public ImmutableSortedMap<K, V> tailMap(K paramK, boolean paramBoolean)
  {
    Preconditions.checkNotNull(paramK);
    return this;
  }

  public String toString()
  {
    return "{}";
  }

  public ImmutableCollection<V> values()
  {
    return ImmutableList.of();
  }
}

/* Location:           C:\Documents and Settings\Cesar Cabello Cea\Mis documentos\Downloads\apk-downloader\com.ikea.kompis-6_dex2jar.jar
 * Qualified Name:     com.google.common.collect.EmptyImmutableSortedMap
 * JD-Core Version:    0.6.2
 */