@MissingDocumentation public interface ThreadMap<V> extends java.util.function.Supplier<V>, java.util.Map<java.lang.Thread,V>
| Modifier and Type | Method and Description |
|---|---|
void |
clear() |
V |
compute(java.util.function.BiFunction<? super java.lang.Thread,? super V,? extends V> remappingFunction) |
V |
computeIfAbsent(java.util.function.Function<? super java.lang.Thread,? extends V> mappingFunction) |
V |
computeIfPresent(java.util.function.BiFunction<? super java.lang.Thread,? super V,? extends V> remappingFunction) |
boolean |
containsKey() |
void |
copy(java.lang.Thread parent,
java.lang.Thread child) |
V |
merge(V value,
java.util.function.BiFunction<? super V,? super V,? extends V> remappingFunction) |
V |
put(V value) |
V |
putIfAbsent(V value) |
V |
remove() |
boolean |
removeValue(V value) |
V |
replace(V value) |
boolean |
replaceValue(V oldValue,
V newValue) |
void |
setChild(java.lang.Thread parent) |
void |
setParent(java.lang.Thread child) |
V compute(java.util.function.BiFunction<? super java.lang.Thread,? super V,? extends V> remappingFunction)
V computeIfAbsent(java.util.function.Function<? super java.lang.Thread,? extends V> mappingFunction)
V computeIfPresent(java.util.function.BiFunction<? super java.lang.Thread,? super V,? extends V> remappingFunction)
boolean containsKey()
void copy(java.lang.Thread parent,
java.lang.Thread child)
V merge(V value, java.util.function.BiFunction<? super V,? super V,? extends V> remappingFunction)
V remove()
boolean removeValue(V value)
void setChild(java.lang.Thread parent)
void setParent(java.lang.Thread child)
void clear()
clear in interface java.util.Map<java.lang.Thread,V>