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)
| 1007 | * @return An object which is the value, or null if there is no value. |
| 1008 | */ |
| 1009 | private Object opt(String key) { |
| 1010 | return key == null ? null : this.map.get(key); |
| 1011 | } |
| 1012 | |
| 1013 | |
| 1014 | // /** |