All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.common.collect.super.com.google.common.collect.ImmutableBiMap Maven / Gradle / Ivy

Go to download

Guava is a suite of core and expanded libraries that include utility classes, google's collections, io classes, and much much more. This project includes GWT-friendly sources.

There is a newer version: 33.1.0-jre
Show newest version
/*
 * Copyright (C) 2009 The Guava Authors
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.google.common.collect;

import static com.google.common.collect.CollectPreconditions.checkEntryNotNull;

import com.google.common.annotations.Beta;
import java.util.Comparator;
import java.util.Map;
import java.util.Map.Entry;
import java.util.function.Function;
import java.util.stream.Collector;

/**
 * GWT emulation of {@link com.google.common.collect.ImmutableBiMap}.
 *
 * @author Hayward Chan
 */
public abstract class ImmutableBiMap extends ForwardingImmutableMap
    implements BiMap {
  @Beta
  public static  Collector> toImmutableBiMap(
      Function keyFunction,
      Function valueFunction) {
    return CollectCollectors.toImmutableBiMap(keyFunction, valueFunction);
  }

  // Casting to any type is safe because the set will never hold any elements.
  @SuppressWarnings("unchecked")
  public static  ImmutableBiMap of() {
    return (ImmutableBiMap) RegularImmutableBiMap.EMPTY;
  }

  public static  ImmutableBiMap of(K k1, V v1) {
    checkEntryNotNull(k1, v1);
    return new SingletonImmutableBiMap(k1, v1);
  }

  public static  ImmutableBiMap of(K k1, V v1, K k2, V v2) {
    return new RegularImmutableBiMap(ImmutableMap.of(k1, v1, k2, v2));
  }

  public static  ImmutableBiMap of(K k1, V v1, K k2, V v2, K k3, V v3) {
    return new RegularImmutableBiMap(ImmutableMap.of(k1, v1, k2, v2, k3, v3));
  }

  public static  ImmutableBiMap of(K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4) {
    return new RegularImmutableBiMap(ImmutableMap.of(k1, v1, k2, v2, k3, v3, k4, v4));
  }

  public static  ImmutableBiMap of(
      K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5) {
    return new RegularImmutableBiMap(ImmutableMap.of(k1, v1, k2, v2, k3, v3, k4, v4, k5, v5));
  }

  public static  Builder builder() {
    return new Builder();
  }

  public static final class Builder extends ImmutableMap.Builder {

    public Builder() {}

    Builder(int initCapacity) {
      super(initCapacity);
    }

    @Override
    public Builder put(K key, V value) {
      super.put(key, value);
      return this;
    }

    @Override
    public Builder put(Entry entry) {
      super.put(entry);
      return this;
    }

    @Override
    public Builder putAll(Map map) {
      super.putAll(map);
      return this;
    }

    @Override
    public Builder putAll(Iterable> entries) {
      super.putAll(entries);
      return this;
    }

    public Builder orderEntriesByValue(Comparator valueComparator) {
      super.orderEntriesByValue(valueComparator);
      return this;
    }

    Builder combine(Builder other) {
      super.combine(other);
      return this;
    }

    @Override
    public ImmutableBiMap build() {
      ImmutableMap map = super.build();
      if (map.isEmpty()) {
        return of();
      }
      return new RegularImmutableBiMap(super.build());
    }

    @Override
    ImmutableBiMap buildJdkBacked() {
      return build();
    }
  }

  public static  ImmutableBiMap copyOf(Map map) {
    if (map instanceof ImmutableBiMap) {
      @SuppressWarnings("unchecked") // safe since map is not writable
      ImmutableBiMap bimap = (ImmutableBiMap) map;
      return bimap;
    }

    if (map.isEmpty()) {
      return of();
    }

    ImmutableMap immutableMap = ImmutableMap.copyOf(map);
    return new RegularImmutableBiMap(immutableMap);
  }

  public static  ImmutableBiMap copyOf(
      Iterable> entries) {
    return new Builder().putAll(entries).build();
  }

  ImmutableBiMap(Map delegate) {
    super(delegate);
  }

  public abstract ImmutableBiMap inverse();

  @Override
  public ImmutableSet values() {
    return inverse().keySet();
  }

  public final V forcePut(K key, V value) {
    throw new UnsupportedOperationException();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy