Return a value for the specified key. @webref stringdict:method @brief Return a value for the specified key
(String key)
| 368 | * @brief Return a value for the specified key |
| 369 | */ |
| 370 | public String get(String key) { |
| 371 | int index = index(key); |
| 372 | if (index == -1) return null; |
| 373 | return values[index]; |
| 374 | } |
| 375 | |
| 376 | |
| 377 | public String get(String key, String alternate) { |
no test coverage detected