If the object stored under key is a map then returns its value otherwise returns an empty map. @param key key associated to the value to retrieve @return the associated map
(Object key)
| 191 | * @return the associated map |
| 192 | */ |
| 193 | public Map<String, String> getMap(Object key) { |
| 194 | return Strings.toMap((String) get(key)); |
| 195 | } |
| 196 | |
| 197 | /** |
| 198 | * Returns a String based view of the data. All the keys and values |
no test coverage detected