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

com.palantir.common.collect.MapEntries Maven / Gradle / Ivy

There is a newer version: 0.1152.0
Show newest version
/*
 * (c) Copyright 2018 Palantir Technologies Inc. All rights reserved.
 *
 * 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.palantir.common.collect;

import com.google.common.base.Function;
import com.google.common.base.Predicate;
import com.google.common.collect.ImmutableMap;
import com.google.common.collect.Maps;
import com.google.common.collect.Maps.EntryTransformer;
import java.util.Map;

public final class MapEntries {
    private MapEntries() {
        /* */
    }

    public static  Function, L> getKeyFunction() {
        return Map.Entry::getKey;
    }

    public static  Function, R> getValueFunction() {
        return Map.Entry::getValue;
    }

    public static  Map putAll(Map map, Iterable> it) {
        for (Map.Entry e : it) {
            map.put(e.getKey(), e.getValue());
        }
        return map;
    }

    public static  void put(Map map, Map.Entry e) {
        map.put(e.getKey(), e.getValue());
    }

    public static  ImmutableMap toMap(Iterable> it) {
        ImmutableMap.Builder builder = ImmutableMap.builder();
        for (Map.Entry e : it) {
            builder.put(e.getKey(), e.getValue());
        }
        return builder.buildOrThrow();
    }

    public static  Function, Map.Entry> applyValue(final Function f) {
        return from -> Maps.immutableEntry(from.getKey(), f.apply(from.getValue()));
    }

    public static  Function, Map.Entry> applyKey(final Function f) {
        return from -> Maps.immutableEntry(f.apply(from.getKey()), from.getValue());
    }

    public static  Predicate> applyValue(final Predicate f) {
        return input -> f.apply(input.getValue());
    }

    public static  Predicate> applyKey(final Predicate f) {
        return input -> f.apply(input.getKey());
    }

    public static  Function, V2> funFromEntryTransformer(
            final EntryTransformer et) {
        return input -> et.transformEntry(input.getKey(), input.getValue());
    }

    public static  EntryTransformer entryTransformerFromFun(
            final Function, V2> f) {
        return (k, v1) -> f.apply(Maps.immutableEntry(k, v1));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy