Get an optional value associated with a key. @param key A key string. @return An object which is the value, or null if there is no value.
(String key)
| 1031 | * @return An object which is the value, or null if there is no value. |
| 1032 | */ |
| 1033 | public Object opt(String key) { |
| 1034 | return key == null ? null : this.map.get(key); |
| 1035 | } |
| 1036 | |
| 1037 | /** |
| 1038 | * Get the enum value associated with a key. |
no test coverage detected