Set metadata name/value. Associate the specified value to the specified metadata name. If some previous values were associated to this name, they are removed. @param name the metadata name. @param value the metadata value.
(String name, String value)
| 157 | * the metadata value. |
| 158 | */ |
| 159 | public void set(String name, String value) { |
| 160 | metadata.put(name, new String[] { value }); |
| 161 | } |
| 162 | |
| 163 | /** |
| 164 | * Remove a metadata and all its associated values. |