org.jclouds.util
Class Maps2
java.lang.Object
org.jclouds.util.Maps2
public class Maps2
- extends Object
General utilities used in jclouds code for Maps.
- Author:
- Adrian Cole
|
Constructor Summary |
Maps2()
|
|
Method Summary |
static
<K,V> com.google.common.base.Supplier<Map<K,V>> |
|
composeMapSupplier(Iterable<com.google.common.base.Supplier<Map<K,V>>> suppliers)
|
static
|
renameKey(Map<String,V> in,
String k1,
String k2)
If the supplied map contains the key k1, its value will be assigned to the key
k2. |
static
|
transformKeys(Map<K1,V> in,
com.google.common.base.Function<K1,K2> fn)
change the keys but keep the values in-tact. |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Maps2
public Maps2()
renameKey
public static <V> Map<String,V> renameKey(Map<String,V> in,
String k1,
String k2)
- If the supplied map contains the key
k1, its value will be assigned to the key
k2. Note that this doesn't modify the input map.
- Type Parameters:
V - type of value the map holds- Parameters:
in - the map you wish to make a copy ofk1 - old keyk2 - new key
- Returns:
- copy of the map with the value of the key re-routed, or the original, if it
k1
wasn't present.
transformKeys
public static <K1,K2,V> Map<K2,V> transformKeys(Map<K1,V> in,
com.google.common.base.Function<K1,K2> fn)
- change the keys but keep the values in-tact.
- Type Parameters:
K1 - input key typeK2 - output key typeV - value type- Parameters:
in - input map to transformfn - how to transform the values
- Returns:
- immutableMap with the new keys.
composeMapSupplier
public static <K,V> com.google.common.base.Supplier<Map<K,V>> composeMapSupplier(Iterable<com.google.common.base.Supplier<Map<K,V>>> suppliers)
Copyright © 2009-2011 jclouds. All Rights Reserved.