Returns whether the given string has been previously stored as a key in the map.
(String key)
| 179 | * Returns whether the given string has been previously stored as a key in the map. |
| 180 | */ |
| 181 | public boolean hasKey(String key) |
| 182 | { |
| 183 | return this.tagMap.containsKey(key); |
| 184 | } |
| 185 | |
| 186 | public boolean hasKey(String key, int type) |
| 187 | { |
no test coverage detected