(final int key)
| 165 | } |
| 166 | |
| 167 | public String getString(final int key) { |
| 168 | byte[] value = mMeta.get(key); |
| 169 | if (value == null) { |
| 170 | return null; |
| 171 | } |
| 172 | try { |
| 173 | return new String(value, mEncoding); |
| 174 | } catch (UnsupportedEncodingException e) { |
| 175 | return new String(value); |
| 176 | } |
| 177 | } |
| 178 | |
| 179 | public int getInt(final int key) { |
| 180 | try { |
no outgoing calls
no test coverage detected