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

org.rapidoid.fluent.To Maven / Gradle / Ivy

The newest version!
package org.rapidoid.fluent;

import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
import java.util.Set;
import java.util.function.BinaryOperator;
import java.util.function.Function;
import java.util.function.Supplier;
import java.util.stream.Collector;
import java.util.stream.Collectors;

/*
 * #%L
 * rapidoid-fluent
 * %%
 * Copyright (C) 2014 - 2017 Nikolche Mihajlovski and contributors
 * %%
 * 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.
 * #L%
 */

/**
 * @author Nikolche Mihajlovski
 * @since 5.0.0
 */
public class To {

	public static  Collector> list() {
		return Collectors.toList();
	}

	public static  Collector> set() {
		return Collectors.toSet();
	}

	public static  Collector> map(Function keyMapper,
	                                                       Function valueMapper) {
		return Collectors.toMap(keyMapper, valueMapper);
	}

	public static > Collector map(Function keyMapper,
	                                                                    Function valueMapper,
	                                                                    BinaryOperator mergeFunction,
	                                                                    Supplier mapSupplier) {

		return Collectors.toMap(keyMapper, valueMapper, mergeFunction, mapSupplier);
	}

	public static  Collector> map(Function keyMapper,
	                                                       Function valueMapper,
	                                                       BinaryOperator mergeFunction) {

		return Collectors.toMap(keyMapper, valueMapper, mergeFunction);
	}

	public static  Collector, ?, Map> map() {
		return map(Entry::getKey, Entry::getValue);
	}

	public static  Collector> linkedMap(Function keyMapper,
	                                                             Function valueMapper,
	                                                             BinaryOperator mergeFunction) {

		return Collectors.toMap(keyMapper, valueMapper, mergeFunction, LinkedHashMap::new);
	}

	public static  Collector> linkedMap(Function keyMapper,
	                                                             Function valueMapper) {
		return linkedMap(keyMapper, valueMapper, Mergers.thrower());
	}

	public static  Collector, ?, Map> linkedMap() {
		return linkedMap(Entry::getKey, Entry::getValue);
	}

}