MCPcopy Index your code
hub / github.com/google/gson / size

Method size

src/main/java/com/google/gson/JsonArray.java:78–80  ·  view source on GitHub ↗

Returns the number of elements in the array. @return the number of elements in the array.

()

Source from the content-addressed store, hash-verified

76 * @return the number of elements in the array.
77 */
78 public int size() {
79 return elements.size();
80 }
81
82 /**
83 * Returns an iterator to navigate the elemetns of the array. Since the array is an ordered list,

Calls

no outgoing calls