org.eclipse.collections.api.map.primitive.PrimitiveObjectMap Maven / Gradle / Ivy
/*
* Copyright (c) 2018 Goldman Sachs and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* and Eclipse Distribution License v. 1.0 which accompany this distribution.
* The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html
* and the Eclipse Distribution License is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*/
package org.eclipse.collections.api.map.primitive;
import java.util.Collection;
import java.util.Map;
import java.util.Spliterator;
import java.util.Spliterators;
import java.util.stream.Stream;
import java.util.stream.StreamSupport;
import org.eclipse.collections.api.RichIterable;
import org.eclipse.collections.api.bag.Bag;
import org.eclipse.collections.api.bag.primitive.BooleanBag;
import org.eclipse.collections.api.bag.primitive.ByteBag;
import org.eclipse.collections.api.bag.primitive.CharBag;
import org.eclipse.collections.api.bag.primitive.DoubleBag;
import org.eclipse.collections.api.bag.primitive.FloatBag;
import org.eclipse.collections.api.bag.primitive.IntBag;
import org.eclipse.collections.api.bag.primitive.LongBag;
import org.eclipse.collections.api.bag.primitive.ShortBag;
import org.eclipse.collections.api.block.function.Function;
import org.eclipse.collections.api.block.function.Function2;
import org.eclipse.collections.api.block.function.primitive.BooleanFunction;
import org.eclipse.collections.api.block.function.primitive.ByteFunction;
import org.eclipse.collections.api.block.function.primitive.CharFunction;
import org.eclipse.collections.api.block.function.primitive.DoubleFunction;
import org.eclipse.collections.api.block.function.primitive.FloatFunction;
import org.eclipse.collections.api.block.function.primitive.IntFunction;
import org.eclipse.collections.api.block.function.primitive.LongFunction;
import org.eclipse.collections.api.block.function.primitive.ShortFunction;
import org.eclipse.collections.api.block.predicate.Predicate;
import org.eclipse.collections.api.block.predicate.Predicate2;
import org.eclipse.collections.api.block.procedure.Procedure;
import org.eclipse.collections.api.map.UnsortedMapIterable;
import org.eclipse.collections.api.multimap.bag.BagMultimap;
import org.eclipse.collections.api.ordered.OrderedIterable;
import org.eclipse.collections.api.partition.bag.PartitionBag;
import org.eclipse.collections.api.set.UnsortedSetIterable;
import org.eclipse.collections.api.tuple.Pair;
/**
* @since 8.0.
*/
public interface PrimitiveObjectMap extends RichIterable
{
boolean containsValue(Object value);
void forEachValue(Procedure super V> procedure);
/**
* Follows the same general contract as {@link Map#equals(Object)}.
*/
@Override
boolean equals(Object o);
/**
* Follows the same general contract as {@link Map#hashCode()}.
*/
@Override
int hashCode();
/**
* Returns a string with the keys and values of this map separated by commas with spaces and
* enclosed in curly braces. Each key and value is separated by an equals sign.
*
*
* Assert.assertEquals(
* "{1=1, 2=2, 3=3}",
* IntObjectMaps.mutable.empty().withKeyValue(1, 1).withKeyValue(2, 2).withKeyValue(3, 3).toString());
*
*
* @return a string representation of this PrimitiveObjectMap
* @see java.util.AbstractMap#toString()
*/
@Override
String toString();
Collection values();
@Override
Bag select(Predicate super V> predicate);
@Override
Bag selectWith(Predicate2 super V, ? super P> predicate, P parameter);
@Override
Bag reject(Predicate super V> predicate);
@Override
Bag rejectWith(Predicate2 super V, ? super P> predicate, P parameter);
@Override
PartitionBag partition(Predicate super V> predicate);
@Override
PartitionBag partitionWith(Predicate2 super V, ? super P> predicate, P parameter);
@Override
Bag selectInstancesOf(Class clazz);
@Override
Bag collect(Function super V, ? extends VV> function);
@Override
BooleanBag collectBoolean(BooleanFunction super V> booleanFunction);
@Override
ByteBag collectByte(ByteFunction super V> byteFunction);
@Override
CharBag collectChar(CharFunction super V> charFunction);
@Override
DoubleBag collectDouble(DoubleFunction super V> doubleFunction);
@Override
FloatBag collectFloat(FloatFunction super V> floatFunction);
@Override
IntBag collectInt(IntFunction super V> intFunction);
@Override
LongBag collectLong(LongFunction super V> longFunction);
@Override
ShortBag collectShort(ShortFunction super V> shortFunction);
@Override
Bag collectWith(Function2 super V, ? super P, ? extends VV> function, P parameter);
@Override
Bag collectIf(Predicate super V> predicate, Function super V, ? extends VV> function);
@Override
Bag flatCollect(Function super V, ? extends Iterable> function);
/**
* @since 9.2
*/
@Override
default Bag flatCollectWith(Function2 super V, ? super P, ? extends Iterable> function, P parameter)
{
return this.flatCollect(each -> function.apply(each, parameter));
}
@Override
BagMultimap groupBy(Function super V, ? extends VV> function);
@Override
BagMultimap groupByEach(Function super V, ? extends Iterable> function);
@Override
UnsortedMapIterable groupByUniqueKey(Function super V, ? extends VV> function);
/**
* @deprecated in 6.0. Use {@link OrderedIterable#zip(Iterable)} instead.
*/
@Override
@Deprecated
Bag> zip(Iterable that);
/**
* @deprecated in 6.0. Use {@link OrderedIterable#zipWithIndex()} instead.
*/
@Override
@Deprecated
UnsortedSetIterable> zipWithIndex();
/**
* @since 9.0
*/
default Stream stream()
{
return StreamSupport.stream(this.spliterator(), false);
}
/**
* @since 9.0
*/
default Stream parallelStream()
{
return StreamSupport.stream(this.spliterator(), true);
}
/**
* @since 9.0
*/
@Override
default Spliterator spliterator()
{
return Spliterators.spliterator(this.iterator(), (long) this.size(), 0);
}
}