MCPcopy Index your code
hub / github.com/adblockplus/adblockplusandroid / get

Method get

src/sunlabs/brazil/util/StringMap.java:249–254  ·  view source on GitHub ↗

Returns the value at the specified index. The index ranges from 0 to size() - 1 . This method can be used to iterate over all the values in this StringMap in the order in which they were inserted, subject to any intervening deletions. @param index The index of the key

(int index)

Source from the content-addressed store, hash-verified

247 * if the index is out of the allowed range.
248 */
249 public String
250 get(int index)
251 throws IndexOutOfBoundsException
252 {
253 return (String) values.elementAt(index);
254 }
255
256 /**
257 * Returns the value that the specified case-insensitive key maps to

Callers 1

toStringMethod · 0.95

Calls 1

indexOfMethod · 0.95

Tested by

no test coverage detected