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

Method getKey

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

Returns the key at the specified index. The index ranges from 0 to size() - 1 . This method can be used to iterate over all the keys 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

224 * if the index is out of the allowed range.
225 */
226 public String
227 getKey(int index)
228 throws IndexOutOfBoundsException
229 {
230 return (String) keys.elementAt(index);
231 }
232
233 /**
234 * Returns the value at the specified index. The index ranges from

Callers 4

toStringMethod · 0.95
appendMethod · 0.45
printMethod · 0.45
copyToMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected