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

org.eclipse.collections.api.map.ImmutableOrderedMap Maven / Gradle / Ivy

There is a newer version: 12.0.0.M3
Show newest version
/*
 * Copyright (c) 2015 Goldman Sachs.
 * 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;

import org.eclipse.collections.api.block.function.Function;
import org.eclipse.collections.api.block.function.Function0;
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.block.procedure.Procedure2;
import org.eclipse.collections.api.list.ImmutableList;
import org.eclipse.collections.api.list.primitive.ImmutableBooleanList;
import org.eclipse.collections.api.list.primitive.ImmutableByteList;
import org.eclipse.collections.api.list.primitive.ImmutableCharList;
import org.eclipse.collections.api.list.primitive.ImmutableDoubleList;
import org.eclipse.collections.api.list.primitive.ImmutableFloatList;
import org.eclipse.collections.api.list.primitive.ImmutableIntList;
import org.eclipse.collections.api.list.primitive.ImmutableLongList;
import org.eclipse.collections.api.list.primitive.ImmutableShortList;
import org.eclipse.collections.api.multimap.list.ImmutableListMultimap;
import org.eclipse.collections.api.partition.list.PartitionImmutableList;
import org.eclipse.collections.api.tuple.Pair;

public interface ImmutableOrderedMap extends OrderedMap, ImmutableMapIterable
{
    ImmutableOrderedMap tap(Procedure procedure);

    ImmutableOrderedMap flipUniqueValues();

    ImmutableListMultimap flip();

    ImmutableOrderedMap select(Predicate2 predicate);

    ImmutableOrderedMap reject(Predicate2 predicate);

     ImmutableOrderedMap collect(Function2> function);

     ImmutableOrderedMap collectValues(Function2 function);

    ImmutableOrderedMap toReversed();

    ImmutableOrderedMap take(int count);

    ImmutableOrderedMap takeWhile(Predicate predicate);

    ImmutableOrderedMap drop(int count);

    ImmutableOrderedMap dropWhile(Predicate predicate);

    PartitionImmutableList partitionWhile(Predicate predicate);

    ImmutableList distinct();

    ImmutableList select(Predicate predicate);

    

ImmutableList selectWith(Predicate2 predicate, P parameter); ImmutableList reject(Predicate predicate);

ImmutableList rejectWith(Predicate2 predicate, P parameter); PartitionImmutableList partition(Predicate predicate);

PartitionImmutableList partitionWith(Predicate2 predicate, P parameter); ImmutableBooleanList collectBoolean(BooleanFunction booleanFunction); ImmutableByteList collectByte(ByteFunction byteFunction); ImmutableCharList collectChar(CharFunction charFunction); ImmutableDoubleList collectDouble(DoubleFunction doubleFunction); ImmutableFloatList collectFloat(FloatFunction floatFunction); ImmutableIntList collectInt(IntFunction intFunction); ImmutableLongList collectLong(LongFunction longFunction); ImmutableShortList collectShort(ShortFunction shortFunction); ImmutableList> zip(Iterable that); ImmutableList> zipWithIndex(); ImmutableList collectWith(Function2 function, P parameter); ImmutableList collectIf(Predicate predicate, Function function); ImmutableList selectInstancesOf(Class clazz); ImmutableList flatCollect(Function> function); ImmutableListMultimap groupBy(Function function); ImmutableListMultimap groupByEach(Function> function); ImmutableOrderedMap groupByUniqueKey(Function function); ImmutableOrderedMap aggregateInPlaceBy(Function groupBy, Function0 zeroValueFactory, Procedure2 mutatingAggregator); ImmutableOrderedMap aggregateBy(Function groupBy, Function0 zeroValueFactory, Function2 nonMutatingAggregator); }