MCPcopy Index your code
hub / github.com/OpenFeign/feign / read

Method read

gson/src/test/java/feign/gson/GsonCodecTest.java:194–203  ·  view source on GitHub ↗
(JsonReader in)

Source from the content-addressed store, hash-verified

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

Callers 7

loadMethod · 0.45
toStringMethod · 0.45
copyMethod · 0.45
writeMethod · 0.45
mapMethod · 0.45

Calls 2

putMethod · 0.65
hasNextMethod · 0.45

Tested by

no test coverage detected