Returns the first value for the given key, or null.
(final String key)
| 83 | * Returns the first value for the given key, or {@code null}. |
| 84 | */ |
| 85 | public String getFirst(final String key) { |
| 86 | final ArrayList<String> values = super.get(key); |
| 87 | return values == null ? null : values.get(0); |
| 88 | } |
| 89 | |
| 90 | } |
no test coverage detected