Collections: List, Set, SortedSet, LinkedHashSet, Map, LinkedHashMap : General Collections « Collections Data Structure « Java

Home
Java
1.2D Graphics GUI
2.3D
3.Advanced Graphics
4.Ant
5.Apache Common
6.Chart
7.Class
8.Collections Data Structure
9.Data Type
10.Database SQL JDBC
11.Design Pattern
12.Development Class
13.EJB3
14.Email
15.Event
16.File Input Output
17.Game
18.Generics
19.GWT
20.Hibernate
21.I18N
22.J2EE
23.J2ME
24.JDK 6
25.JNDI LDAP
26.JPA
27.JSP
28.JSTL
29.Language Basics
30.Network Protocol
31.PDF RTF
32.Reflection
33.Regular Expressions
34.Scripting
35.Security
36.Servlets
37.Spring
38.Swing Components
39.Swing JFC
40.SWT JFace Eclipse
41.Threads
42.Tiny Application
43.Velocity
44.Web Services SOA
45.XML
Java » Collections Data Structure » General CollectionsScreenshots 
Collections: List, Set, SortedSet, LinkedHashSet, Map, LinkedHashMap
Collections: List, Set, SortedSet, LinkedHashSet, Map, LinkedHashMap


import java.util.ArrayList;
import java.util.Collection;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Iterator;
import java.util.LinkedHashMap;
import java.util.LinkedHashSet;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.SortedMap;
import java.util.SortedSet;
import java.util.TreeMap;
import java.util.TreeSet;

public class CollectionAll {
  public static void main(String[] args) {
    List list1 = new LinkedList();
    list1.add("list");
    list1.add("dup");
    list1.add("x");
    list1.add("dup");
    traverse(list1)
    List list2 = new ArrayList();
    list2.add("list");
    list2.add("dup");
    list2.add("x");
    list2.add("dup");
    traverse(list2)
    Set set1 = new HashSet();
    set1.add("set");
    set1.add("dup");
    set1.add("x");
    set1.add("dup");
    traverse(set1)
    SortedSet set2 = new TreeSet();
    set2.add("set");
    set2.add("dup");
    set2.add("x");
    set2.add("dup");
    traverse(set2)
    LinkedHashSet set3 = new LinkedHashSet();
    set3.add("set");
    set3.add("dup");
    set3.add("x");
    set3.add("dup");
    traverse(set3)
    Map m1 = new HashMap();
    m1.put("map""Java2s");
    m1.put("dup""Kava2s");
    m1.put("x""Mava2s");
    m1.put("dup""Lava2s");
    traverse(m1.keySet())
    traverse(m1.values())
    SortedMap m2 = new TreeMap();
    m2.put("map""Java2s");
    m2.put("dup""Kava2s");
    m2.put("x""Mava2s");
    m2.put("dup""Lava2s");
    traverse(m2.keySet())
    traverse(m2.values())
    LinkedHashMap /* from String to String */m3 = new LinkedHashMap();
    m3.put("map""Java2s");
    m3.put("dup""Kava2s");
    m3.put("x""Mava2s");
    m3.put("dup""Lava2s");
    traverse(m3.keySet())
    traverse(m3.values())
  }

  static void traverse(Collection coll) {
    Iterator iter = coll.iterator();
    while (iter.hasNext()) {
      String elem = (Stringiter.next();
      System.out.print(elem + " ");
    }
    System.out.println();
  }

}


           
       
Related examples in the same category
1.Using the Collections.synchronized methods
2.Sometimes methods defined in the Collection interfaces don't workSometimes methods defined in the Collection interfaces don't work
3.Simple demonstrations of the Collections utilitiesSimple demonstrations of the Collections utilities
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.