MCPcopy
hub / github.com/google/gson / entrySet

Method entrySet

src/main/java/com/google/gson/JsonObject.java:134–136  ·  view source on GitHub ↗

Returns a set of members of this object. The set is ordered, and the order is in which the elements were added. @return a set of members of this object.

()

Source from the content-addressed store, hash-verified

132 * @return a set of members of this object.
133 */
134 public Set<Map.Entry<String, JsonElement>> entrySet() {
135 return members.entrySet();
136 }
137
138 /**
139 * Convenience method to check if a member with the specified name is present in this object.

Callers 15

testToJsonTreeMethod · 0.95
navigateMethod · 0.95
deserializeMethod · 0.95
serializeMethod · 0.95
assertContainsMethod · 0.80
serializeMethod · 0.80
deserializeMethod · 0.80
registerIfAbsentMethod · 0.80
registerMethod · 0.80

Calls

no outgoing calls

Tested by 5

testToJsonTreeMethod · 0.76
assertContainsMethod · 0.64