Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 58aff7de authored by Elliott Hughes's avatar Elliott Hughes
Browse files

Clarify the documentation of SparseArray.indexOfValue.

Bug: https://code.google.com/p/android/issues/detail?id=53297
Change-Id: I28725a2d03d4c11948bfe4fb90d730c86bf41481
parent 083bfa5a
Loading
Loading
Loading
Loading
+10 −8
Original line number Diff line number Diff line
@@ -268,9 +268,11 @@ public class SparseArray<E> implements Cloneable {
     * Returns an index for which {@link #valueAt} would return the
     * specified key, or a negative number if no keys map to the
     * specified value.
     * Beware that this is a linear search, unlike lookups by key,
     * <p>Beware that this is a linear search, unlike lookups by key,
     * and that multiple keys can map to the same value and this will
     * find only one of them.
     * <p>Note also that unlike most collections' {@code indexOf} methods,
     * this method compares values using {@code ==} rather than {@code equals}.
     */
    public int indexOfValue(E value) {
        if (mGarbage) {