Return a value for the specified key. @webref stringdict:method @webBrief Return a value for the specified key
(String key)
| 379 | * @webBrief Return a value for the specified key |
| 380 | */ |
| 381 | public String get(String key) { |
| 382 | int index = index(key); |
| 383 | if (index == -1) return null; |
| 384 | return values[index]; |
| 385 | } |
| 386 | |
| 387 | |
| 388 | public String get(String key, String alternate) { |
no test coverage detected