I must be missing something very obvious, but I've searched all over and can't find this method.

link|improve this question

feedback

9 Answers

up vote 9 down vote accepted

There are a couple of ways to accomplish this using the Arrays utility class.

If the array is not sorted:

java.util.Arrays.asList(theArray).indexOf(o)

If the array is sorted, you can make use of a binary search for performance:

java.util.Arrays.binarySearch(theArray, o)
link|improve this answer
I don't know how I missed this simple conversion, thanks. – Jamie Feb 10 '11 at 20:59
I'm pretty sure this answer is wrong at least for java 1.6: download.oracle.com/javase/6/docs/api/java/util/…...) asList transforms the list of arguments into a list not the argument itself. – Alexandru Jun 28 '11 at 12:13
@Alexandru Ellipsis handling is syntactic sugar. If you have an argument typed T..., the actual run-time type of the argument is T[], and passing zero or more parameters of type T results in them being wrapped into a newly constructed array and passed. If the parameter being passed is already of type T[], the syntactic sugar is bypassed. – Jeffrey Hantin Jun 29 '11 at 2:37
I see your point. The solution (.indexOf) is not valid for primitives, though. – Alexandru Jun 29 '11 at 8:15
1  
Since nobody mentioned: Arrays.asList uses the already-existing array as the backing. (I.e. there's no concern about a copy being created.) – Joshua Goldberg Nov 28 '11 at 21:09
show 4 more comments
feedback

Array has no indexOf() method.

Maybe this Apache ArrayUtils method is what you are looking for

import org.apache.commons.lang.ArrayUtils;

String[] colours = { "Red", "Orange", "Yellow", "Green" };

int indexOfYellow = ArrayUtils.indexOf(colours, "Yellow");

System.out.println("indexOfYellow = " + indexOfYellow);
link|improve this answer
feedback

There is none. Either use a java.util.List*, or you can write your own indexOf():

public static <T> int indexOf(T needle, T[] haystack)
{
    for (int i=0; i<haystack.length; i++)
    {
        if (haystack[i] != null && haystack[i].equals(needle)
            || needle == null && haystack[i] == null) return i;
    }

    return -1;
}

*you can make one from your array using Arrays#asList()

link|improve this answer
feedback

Java ArrayList has an indexOf method. Java arrays have no such method.

link|improve this answer
5  
Not just ArrayList - every Java List has indexOf(). – Matt Ball Feb 10 '11 at 20:43
feedback

Arrays themselves do not have that method. An ArrayList, however, does: indexOf

link|improve this answer
1  
Not just ArrayList - every Java List has indexOf(). – Matt Ball Feb 10 '11 at 20:42
Yeah, I just specified ArrayList because that may be the closest thing to what the OP was looking for :) – GrailsGuy Feb 10 '11 at 20:44
feedback

I don't recall of a "indexOf" on arrays other than coding it for yourself... though you could probably use one of the many java.util.Arrays#binarySearch(...) methods (see the Arrays javadoc) if your array contains primitive types

link|improve this answer
feedback

The List interface has an indexOf() method, and you can obtain a List from your array with Array's asList() method. Other than that, Array itself has no such method. It does have a binarySearch() method for sorted arrays.

link|improve this answer
feedback

You're probably thinking of the java.util.ArrayList, not the array.

link|improve this answer
feedback

For primitives, if you want to avoid boxing, Guava has helpers for primitive arrays e.g. Ints.indexOf(int[] array, int target)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.