Package com.atlassian.bamboo.utils.map
Class FilteredMap<V>
- java.lang.Object
-
- com.atlassian.bamboo.utils.map.FilteredMap<V>
-
-
Constructor Summary
Constructors Constructor Description FilteredMap(String prefix)
FilteredMap(String prefix, Map<String,V> decoratedMap)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
clear()
boolean
containsKey(Object key)
boolean
containsValue(Object value)
static <T> FilteredMap<T>
decorate(String prefix, Map<String,T> params)
Set<Map.Entry<String,V>>
entrySet()
boolean
equals(Object o)
V
get(Object key)
Map<String,V>
getDecoratedMap()
int
hashCode()
boolean
isEmpty()
Set<String>
keySet()
V
put(String key, V value)
void
putAll(Map t)
V
remove(Object key)
int
size()
FilteredMap<V>
subset(String prefix)
Collection<V>
values()
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.util.Map
compute, computeIfAbsent, computeIfPresent, forEach, getOrDefault, merge, putIfAbsent, remove, replace, replace, replaceAll
-
-
-
-
Method Detail
-
subset
public FilteredMap<V> subset(String prefix)
-
containsValue
public boolean containsValue(Object value)
- Specified by:
containsValue
in interfaceMap<String,V>
-
containsKey
public boolean containsKey(Object key)
- Specified by:
containsKey
in interfaceMap<String,V>
-
equals
public boolean equals(Object o)
-
hashCode
public int hashCode()
-
decorate
public static <T> FilteredMap<T> decorate(String prefix, Map<String,T> params)
-
-