Finding an Element in a Sorted List int index = Collections.binarySearch( sortedList, object); if (index < 0) { // not found }