package com.google.common.collect;

import java.util.Map.Entry;
import javax.annotation.Nullable;

final class EmptyImmutableBiMap extends ImmutableBiMap<Object, Object>
{
  static final EmptyImmutableBiMap INSTANCE = new EmptyImmutableBiMap();

  ImmutableSet<Map.Entry<Object, Object>> createEntrySet()
  {
    throw new AssertionError("should never be called");
  }

  public ImmutableSet<Map.Entry<Object, Object>> entrySet()
  {
    return ImmutableSet.of();
  }

  public Object get(@Nullable Object paramObject)
  {
    return null;
  }

  public ImmutableBiMap<Object, Object> inverse()
  {
    return this;
  }

  public boolean isEmpty()
  {
    return true;
  }

  boolean isPartialView()
  {
    return false;
  }

  public ImmutableSet<Object> keySet()
  {
    return ImmutableSet.of();
  }

  public int size()
  {
    return 0;
  }
}

/* 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.EmptyImmutableBiMap
 * JD-Core Version:    0.6.2
 */