com.gs.collections.api.bimap.ImmutableBiMap Maven / Gradle / Ivy
/*
* Copyright 2015 Goldman Sachs.
*
* 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.gs.collections.api.bimap;
import com.gs.collections.api.bag.ImmutableBagIterable;
import com.gs.collections.api.block.function.Function;
import com.gs.collections.api.block.function.Function2;
import com.gs.collections.api.block.predicate.Predicate;
import com.gs.collections.api.block.predicate.Predicate2;
import com.gs.collections.api.block.procedure.Procedure;
import com.gs.collections.api.map.ImmutableMapIterable;
import com.gs.collections.api.multimap.set.ImmutableSetMultimap;
import com.gs.collections.api.partition.set.PartitionImmutableSet;
import com.gs.collections.api.set.ImmutableSet;
import com.gs.collections.api.tuple.Pair;
/**
* A {@link BiMap} whose contents cannot be altered after initialization.
*
* @since 4.2
*/
public interface ImmutableBiMap extends BiMap, ImmutableMapIterable
{
ImmutableBiMap newWithKeyValue(K key, V value);
ImmutableBiMap newWithAllKeyValues(Iterable extends Pair extends K, ? extends V>> keyValues);
ImmutableBiMap newWithAllKeyValueArguments(Pair extends K, ? extends V>... keyValuePairs);
ImmutableBiMap newWithoutKey(K key);
ImmutableBiMap newWithoutAllKeys(Iterable extends K> keys);
ImmutableBiMap inverse();
ImmutableSetMultimap flip();
ImmutableBiMap flipUniqueValues();
ImmutableBiMap tap(Procedure super V> procedure);
ImmutableBiMap select(Predicate2 super K, ? super V> predicate);
ImmutableBiMap reject(Predicate2 super K, ? super V> predicate);
ImmutableBiMap collect(Function2 super K, ? super V, Pair> function);
ImmutableBiMap collectValues(Function2 super K, ? super V, ? extends R> function);
ImmutableSet select(Predicate super V> predicate);
ImmutableSet selectWith(Predicate2 super V, ? super P> predicate, P parameter);
ImmutableSet reject(Predicate super V> predicate);
ImmutableSet rejectWith(Predicate2 super V, ? super P> predicate, P parameter);
PartitionImmutableSet partition(Predicate super V> predicate);
PartitionImmutableSet partitionWith(Predicate2 super V, ? super P> predicate, P parameter);
ImmutableSet selectInstancesOf(Class clazz);
ImmutableBagIterable collect(Function super V, ? extends V1> function);
ImmutableBagIterable collectWith(Function2 super V, ? super P, ? extends V1> function, P parameter);
ImmutableBagIterable collectIf(Predicate super V> predicate, Function super V, ? extends V1> function);
ImmutableBagIterable flatCollect(Function super V, ? extends Iterable> function);
ImmutableSetMultimap groupBy(Function super V, ? extends V1> function);
ImmutableSetMultimap groupByEach(Function super V, ? extends Iterable> function);
ImmutableBiMap groupByUniqueKey(Function super V, ? extends VV> function);
ImmutableSet> zip(Iterable that);
ImmutableSet> zipWithIndex();
}