Is it contained in the collection

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

import java.util.ArrayList;
import java.util.Collection;

public class Main {

  public static void main(String args[]) {
     Collection collection = new ArrayList();
     collection.add("java2s.com");
     collection.add("j a v a 2 s.com");
     collection.add("j a v a 2 s . com");
     collection.add("j a v a 2 s . c o m");
     System.out.println(collection.contains("java2s.com"));
     
  }
}

The output:


true
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.