I have a list:
public static List codes = new LinkedList(Arrays.asList( \"Zero\", \"One\" ))
The reverse of codes.get() is indexOf(Object obj) method
codes.get()
Returns the index of the first occurrence of the specified element in this list, or -1 if this list does not contain the element.
codes.indexOf("One");