Set Example 1 : Collection « Apache Common « Java






Set Example 1

import org.apache.commons.collections.set.MapBackedSet;

import java.util.Map;
import java.util.Set;
import java.util.HashMap;
import java.util.Iterator;

public class SetExampleV1 {
  public static void main(String args[]) {
    // create a Map
    Map map = new HashMap();
    map.put("Key1", "Value1");

    // create the decoration
    Set set = MapBackedSet.decorate(map);

    map.put("Key2", "Any dummy value");
    set.add("Key3");

    Iterator itr = set.iterator();

    while(itr.hasNext()) {
      System.err.println(itr.next());
    }

  }
}
           
       








ApacheCommonSetExampleV1.zip( 513 k)

Related examples in the same category

1.Collection Bag
2.Transformer Example
3.Collection BidiMap
4.Collection Buffer
5.Collection Closure
6.Comparator Example For BuildIn Data Type
7.Comparator Example For User Defined Class
8.Cookie Bag 2
9.Factory Example 1
10.HashMap Example 1
11.List Example 1
12.MapHeaven 1
13.Multi Key Example 1
14.MultiKey Example 2
15.Set Example 2
16.Bean Comparator ( Sorting based on Properties of class )Bean Comparator ( Sorting based on Properties of class )