com.atlassian.bamboo.util
Class OptionUnpackingMap<K,V>
java.lang.Object
com.atlassian.bamboo.util.OptionUnpackingMap<K,V>
- All Implemented Interfaces:
- ConcurrentMap<K,V>, Map<K,V>
@ExperimentalApi
public class OptionUnpackingMap<K,V>
- extends Object
- implements ConcurrentMap<K,V>
This class provides an adapter between a Map containing Option values and a map providing direct nullable values.
It's meant to be used for Google nullable Caches, which do not have mutability. If you're planning on using it, make
sure you UT the method you're using! It says experimental in the annotation below!
Nested classes/interfaces inherited from interface java.util.Map |
Map.Entry<K,V> |
OptionUnpackingMap
public OptionUnpackingMap(ConcurrentMap<K,com.atlassian.fugue.Option<V>> mapWithOptions)
putIfAbsent
@Nullable
public V putIfAbsent(K key,
V value)
- Specified by:
putIfAbsent
in interface ConcurrentMap<K,V>
remove
public boolean remove(Object key,
Object value)
- Specified by:
remove
in interface ConcurrentMap<K,V>
replace
public boolean replace(K key,
V oldValue,
V newValue)
- Specified by:
replace
in interface ConcurrentMap<K,V>
replace
@Nullable
public V replace(K key,
V value)
- Specified by:
replace
in interface ConcurrentMap<K,V>
size
public int size()
- Specified by:
size
in interface Map<K,V>
isEmpty
public boolean isEmpty()
- Specified by:
isEmpty
in interface Map<K,V>
containsKey
public boolean containsKey(Object key)
- Specified by:
containsKey
in interface Map<K,V>
containsValue
public boolean containsValue(Object value)
- Specified by:
containsValue
in interface Map<K,V>
get
public V get(Object key)
- Specified by:
get
in interface Map<K,V>
put
@Nullable
public V put(K key,
V value)
- Specified by:
put
in interface Map<K,V>
remove
@Nullable
public V remove(Object key)
- Specified by:
remove
in interface Map<K,V>
putAll
public void putAll(Map<? extends K,? extends V> m)
- Specified by:
putAll
in interface Map<K,V>
clear
public void clear()
- Specified by:
clear
in interface Map<K,V>
keySet
public Set<K> keySet()
- Specified by:
keySet
in interface Map<K,V>
values
public Collection<V> values()
- Specified by:
values
in interface Map<K,V>
entrySet
public Set<Map.Entry<K,V>> entrySet()
- Specified by:
entrySet
in interface Map<K,V>
equals
public boolean equals(Object o)
- Specified by:
equals
in interface Map<K,V>
- Overrides:
equals
in class Object
hashCode
public int hashCode()
- Specified by:
hashCode
in interface Map<K,V>
- Overrides:
hashCode
in class Object
Copyright © 2015 Atlassian Software Systems Pty Ltd. All rights reserved.