Uses of Class
com.atlassian.bamboo.utils.map.Key
-
Packages that use Key Package Description com.atlassian.bamboo.chains com.atlassian.bamboo.utils.map -
-
Uses of Key in com.atlassian.bamboo.chains
Methods in com.atlassian.bamboo.chains with parameters of type Key Modifier and Type Method Description abstract boolean
ExecutionContext. containsKey(Key<?> key)
boolean
ExecutionContextImpl. containsKey(Key<?> key)
abstract <V> V
ExecutionContext. getValue(Key<V> key)
<V> V
ExecutionContextImpl. getValue(Key<V> key)
abstract <V> V
ExecutionContext. putIfAbsent(Key<V> key, V value)
<V> V
ExecutionContextImpl. putIfAbsent(Key<V> key, V value)
abstract boolean
ExecutionContext. remove(Key<?> key, Object value)
boolean
ExecutionContextImpl. remove(Key<?> key, Object value)
abstract <V> boolean
ExecutionContext. replace(Key<?> key, V oldValue, V newValue)
<V> boolean
ExecutionContextImpl. replace(Key<?> key, V oldValue, V newValue)
-
Uses of Key in com.atlassian.bamboo.utils.map
Methods in com.atlassian.bamboo.utils.map that return Key Modifier and Type Method Description static <T> Key<T>
Key. createKey(Class<T> clazz)
Creates a new Key typed by the givenClass
Methods in com.atlassian.bamboo.utils.map that return types with arguments of type Key Modifier and Type Method Description Set<Map.Entry<Key<? extends V>,V>>
TypedIdentityMap. entrySet()
Set<Key<? extends V>>
TypedIdentityMap. keySet()
Methods in com.atlassian.bamboo.utils.map with parameters of type Key Modifier and Type Method Description <T extends V>
TTypedIdentityMap. getValue(Key<? extends V> key)
Retrieves the value represented byKey
in a type safe manner.V
TypedIdentityMap. put(Key<? extends V> key, V value)
V
TypedIdentityMap. putIfAbsent(Key<? extends V> key, V value)
V
TypedIdentityMap. replace(Key<? extends V> key, V value)
boolean
TypedIdentityMap. replace(Key<? extends V> key, V oldValue, V newValue)
Method parameters in com.atlassian.bamboo.utils.map with type arguments of type Key Modifier and Type Method Description void
TypedIdentityMap. putAll(Map<? extends Key<? extends V>,? extends V> m)
-