List search

In this chapter you will learn:

  1. Does a List contain certain element
  2. How to get the element index inside a List

Does a List contain certain element

With List interface we can search to see if an element exist in it or not.

  • boolean contains(Object o)
    Returns true if this list contains the specified element.
  • boolean containsAll(Collection<?> c)
    Returns true if this list contains all of the elements of the specified collection.

The following code creates a list and then inserts some string values into the list. After printing out all of its values we use the contains to see if the string "java2s.com" is in the list.

import java.util.ArrayList;
import java.util.List;
/*from ja va 2 s.c om*/
public class Main {
  public static void main(String[] args) {
    List list = new ArrayList();

    list.add("1");
    list.add("2");
    list.add("3");
 
    list.add("java2s.com");

    System.out.println("List has:" + list);

    boolean b = list.contains("java2s.com");
    
    System.out.println(b);
    
  }
}

The output:

Get the element index

We can search an element and look for its index in a List by using the following methods. indexOf starts the search from the start of a list, while lastIndexOf searches a value from the end of a list.

  • int indexOf(Object o) Returns the index of the first occurrence of the specified element in this list, or -1 if this list does not contain the element.
  • int lastIndexOf(Object o) Returns the index of the last occurrence of the specified element in this list, or -1 if this list does not contain the element.
import java.util.ArrayList;
import java.util.List;
//from  ja va 2  s  .c o  m
public class Main {
  public static void main(String[] args) {
    List list = new ArrayList();

    list.add("1");
    list.add("2");
    list.add("3");

    list.add("java2s.com");

    System.out.println(list.indexOf("java2s.com"));
  }
}

The output:

Next chapter...

What you will learn in the next chapter:

  1. How to use methods from List to get and set element
  2. How to replace an element in a List with set method
Home » Java Tutorial » Collections

List interface
List add/insert elements
List clear/remove elements
List search
List element get and set
List and its Iterator
List size, empty
List conversion, to array
List to sublist
List comparison
ArrayList
ArrayList Creation
ArrayList add/insert
ArrayList get/set element
ArrayList clear/remove
ArrayList search
ArrayList copy and shallow copy
ArrayList size, trim to size and capacity
ArrayList to array
LinkedList class
LinkedList creation
LinkedList add/insert elements
LinkedList get elements
LinkedList search
LinkeList replace/set elements
LinkedList remove element
LinkedList copy
LinkedList iterator
LinkedList peek element
LinkedList pop/push element
LinkedList conversion
Map interface
Map element adding
Map.Entry class
Map key
Map value
Map key/value search
Map delete/remove
Map comparison
HashMap Class
HashMap search
HashMap clone
TreeMap
TreeMap key
TreeMap head sub map
TreeMap tail sub map
TreeMap sub map
NavigableMap
NavigableMap key
NavigableMap key-value pair
LinkedHashMap Class
IdentityHashMap
SortedMap
HashSet
HashSet element adding
HashSet element removing and clearing
HashSet clone
HashSet iterator
HashSet properties
TreeSet
TreeSet elements adding
TreeSet subSet
NavigableSet
LinkedHashSet
Iterator
ListIterator
List filling
List reversing
List rotating and shuffling
List sorting
List element swap
List element replacing
List copy
List binary search
Collection unmodifiable
Collection synchronized
Collection singleton
Collection max/min value
Empty Collections
Comparator
Comparable
Enumeration
EnumSet
EnumMap Class
PriorityQueue