org.jclouds.util.Multimaps2 Maven / Gradle / Ivy
/**
* Licensed to jclouds, Inc. (jclouds) under one or more
* contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. jclouds licenses this file
* to you 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 org.jclouds.util;
import static com.google.common.base.Preconditions.checkNotNull;
import java.util.Map.Entry;
import java.util.Set;
import com.google.common.base.Function;
import com.google.common.base.Predicates;
import com.google.common.collect.ImmutableMultimap;
import com.google.common.collect.ImmutableMultimap.Builder;
import com.google.common.collect.Multimap;
import com.google.common.collect.Multimaps;
/**
*
* @author Adrian Cole
*/
public class Multimaps2 {
public static Multimap replaceValue(Multimap fromMultimap, final K key, final V value) {
checkNotNull(fromMultimap, "input multimap");
checkNotNull(key, "key");
checkNotNull(value, "value");
return ImmutableMultimap.builder()
.putAll(withoutKey(fromMultimap, key))
.put(key, value).build();
}
public static Multimap replaceEntries(Multimap fromMultimap, Multimap updates) {
checkNotNull(fromMultimap, "input multimap");
checkNotNull(updates, "updates");
return ImmutableMultimap.builder()
.putAll(withoutKeys(fromMultimap, updates.keySet()))
.putAll(updates).build();
}
public static Multimap withoutKey(Multimap fromMultimap, K key) {
return Multimaps. filterKeys(fromMultimap, Predicates.not(Predicates.equalTo(key)));
}
public static Multimap withoutKeys(Multimap fromMultimap, Set keys) {
return Multimaps. filterKeys(fromMultimap, Predicates.not(Predicates.in(keys)));
}
/**
* change the keys but keep the values in-tact.
*
* @param
* input key type
* @param
* output key type
* @param
* value type
* @param in
* input map to transform
* @param fn
* how to transform the values
* @return immutableMap with the new keys.
*/
public static Multimap transformKeys(Multimap in, Function fn) {
checkNotNull(in, "input map");
checkNotNull(fn, "function");
Builder returnVal = ImmutableMultimap.builder();
for (Entry entry : in.entries())
returnVal.put(fn.apply(entry.getKey()), entry.getValue());
return returnVal.build();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy