package org.eclipse.collections.api.bag;
import org.eclipse.collections.api.bag.primitive.ImmutableBooleanBag;
import org.eclipse.collections.api.bag.primitive.ImmutableByteBag;
import org.eclipse.collections.api.bag.primitive.ImmutableCharBag;
import org.eclipse.collections.api.bag.primitive.ImmutableDoubleBag;
import org.eclipse.collections.api.bag.primitive.ImmutableFloatBag;
import org.eclipse.collections.api.bag.primitive.ImmutableIntBag;
import org.eclipse.collections.api.bag.primitive.ImmutableLongBag;
import org.eclipse.collections.api.bag.primitive.ImmutableShortBag;
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.ObjectIntToObjectFunction;
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.predicate.primitive.IntPredicate;
import org.eclipse.collections.api.block.procedure.Procedure;
import org.eclipse.collections.api.factory.Sets;
import org.eclipse.collections.api.list.ImmutableList;
import org.eclipse.collections.api.multimap.bag.ImmutableBagMultimap;
import org.eclipse.collections.api.ordered.OrderedIterable;
import org.eclipse.collections.api.partition.bag.PartitionImmutableBag;
import org.eclipse.collections.api.set.ImmutableSet;
import org.eclipse.collections.api.set.MutableSet;
import org.eclipse.collections.api.tuple.Pair;
import org.eclipse.collections.api.tuple.primitive.ObjectIntPair;
public interface ImmutableBag<T> extends UnsortedBag<T>, ImmutableBagIterable<T>
{
@Override
ImmutableBag<T> newWith(T element);
@Override
ImmutableBag<T> newWithout(T element);
@Override
ImmutableBag<T> newWithAll(Iterable<? extends T> elements);
@Override
ImmutableBag<T> newWithoutAll(Iterable<? extends T> elements);
@Override
ImmutableBag<T> selectByOccurrences(IntPredicate predicate);
@Override
default ImmutableBag<T> selectDuplicates()
{
return this.selectByOccurrences(occurrences -> occurrences > 1);
}
@Override
default ImmutableSet<T> selectUnique()
{
MutableSet<T> result = Sets.mutable.empty();
this.forEachWithOccurrences((each, occurrences) ->
{
if (occurrences == 1)
{
result.add(each);
}
});
return result.toImmutable();
}
@Override
ImmutableBag<T> tap(Procedure<? super T> procedure);
@Override
ImmutableBag<T> select(Predicate<? super T> predicate);
@Override
<P> ImmutableBag<T> selectWith(Predicate2<? super T, ? super P> predicate, P parameter);
@Override
ImmutableBag<T> reject(Predicate<? super T> predicate);
@Override
<P> ImmutableBag<T> rejectWith(Predicate2<? super T, ? super P> predicate, P parameter);
@Override
PartitionImmutableBag<T> partition(Predicate<? super T> predicate);
@Override
<P> PartitionImmutableBag<T> partitionWith(Predicate2<? super T, ? super P> predicate, P parameter);
@Override
<S> ImmutableBag<S> selectInstancesOf(Class<S> clazz);
@Override
<V> ImmutableBag<V> collect(Function<? super T, ? extends V> function);
@Override
ImmutableBooleanBag collectBoolean(BooleanFunction<? super T> booleanFunction);
@Override
ImmutableByteBag collectByte(ByteFunction<? super T> byteFunction);
@Override
ImmutableCharBag collectChar(CharFunction<? super T> charFunction);
@Override
ImmutableDoubleBag collectDouble(DoubleFunction<? super T> doubleFunction);
@Override
ImmutableFloatBag collectFloat(FloatFunction<? super T> floatFunction);
@Override
ImmutableIntBag collectInt(IntFunction<? super T> intFunction);
@Override
ImmutableLongBag collectLong(LongFunction<? super T> longFunction);
@Override
ImmutableShortBag collectShort(ShortFunction<? super T> shortFunction);
@Override
<P, V> ImmutableBag<V> collectWith(Function2<? super T, ? super P, ? extends V> function, P parameter);
@Override
<V> ImmutableBag<V> collectIf(Predicate<? super T> predicate, Function<? super T, ? extends V> function);
@Override
<V> ImmutableBag<V> collectWithOccurrences(ObjectIntToObjectFunction<? super T, ? extends V> function);
@Override
<V> ImmutableBag<V> flatCollect(Function<? super T, ? extends Iterable<V>> function);
@Override
default <P, V> ImmutableBag<V> flatCollectWith(Function2<? super T, ? super P, ? extends Iterable<V>> function, P parameter)
{
return this.flatCollect(each -> function.apply(each, parameter));
}
@Override
default <V> ImmutableBag<V> countBy(Function<? super T, ? extends V> function)
{
return this.collect(function);
}
@Override
default <V, P> ImmutableBag<V> countByWith(Function2<? super T, ? super P, ? extends V> function, P parameter)
{
return this.collectWith(function, parameter);
}
@Override
default <V> ImmutableBag<V> countByEach(Function<? super T, ? extends Iterable<V>> function)
{
return this.flatCollect(function);
}
@Override
<V> ImmutableBagMultimap<V, T> groupBy(Function<? super T, ? extends V> function);
@Override
<V> ImmutableBagMultimap<V, T> groupByEach(Function<? super T, ? extends Iterable<V>> function);
@Override
@Deprecated
<S> ImmutableBag<Pair<T, S>> zip(Iterable<S> that);
@Override
@Deprecated
ImmutableSet<Pair<T, Integer>> zipWithIndex();
@Override
ImmutableList<ObjectIntPair<T>> topOccurrences(int count);
@Override
ImmutableList<ObjectIntPair<T>> bottomOccurrences(int count);
@Override
default ImmutableBag<T> toImmutableBag()
{
return this;
}
}