(JsonReader in)
| 192 | } |
| 193 | |
| 194 | @Override |
| 195 | public Zone read(JsonReader in) throws IOException { |
| 196 | in.beginObject(); |
| 197 | Zone zone = new Zone(); |
| 198 | while (in.hasNext()) { |
| 199 | zone.put(in.nextName(), in.nextString().toUpperCase()); |
| 200 | } |
| 201 | in.endObject(); |
| 202 | return zone; |
| 203 | } |
| 204 | }; |
| 205 | |
| 206 | @Test |
no test coverage detected