If the object stored under key is a set then returns its value otherwise returns an empty set. @param key key associated to the value to retrieve @return the associated linked hash set
(Object key)
| 179 | * @return the associated linked hash set |
| 180 | */ |
| 181 | public LinkedHashSet<String> getSet(Object key) { |
| 182 | return Strings.toSet((String) get(key), ", "); |
| 183 | } |
| 184 | |
| 185 | |
| 186 | /** |