All Methods Instance Methods Concrete Methods
| Modifier and Type |
Method and Description |
void |
clear() |
String |
compute(String key,
BiFunction<? super String,? super String,? extends String> remappingFunction) |
String |
computeIfAbsent(String key,
Function<? super String,? extends String> mappingFunction) |
String |
computeIfPresent(String key,
BiFunction<? super String,? super String,? extends String> remappingFunction) |
boolean |
containsKey(String o) |
boolean |
containsValue(String o) |
Set<Map.Entry<String,String>> |
entrySet() |
void |
forEach(BiConsumer<? super String,? super String> action) |
String |
get(String o) |
String |
getOrDefault(String key,
String defaultValue) |
Map<String,String> |
getProperties() |
HawkularUser |
getUser() |
boolean |
isEmpty() |
Set<String> |
keySet() |
String |
merge(String key,
String value,
BiFunction<? super String,? super String,? extends String> remappingFunction) |
String |
put(String s,
String s2) |
void |
putAll(Map<? extends String,? extends String> map) |
String |
putIfAbsent(String key,
String value) |
String |
remove(String o) |
boolean |
remove(String key,
String value) |
String |
replace(String key,
String value) |
boolean |
replace(String key,
String oldValue,
String newValue) |
void |
replaceAll(BiFunction<? super String,? super String,? extends String> function) |
int |
size() |
Collection<String> |
values() |