Package collections.maps

Source Code of collections.maps.LinkedhashMapUsing

package collections.maps;

import collections.sets.Boo;

import java.util.LinkedHashMap;

public class LinkedhashMapUsing {

  /**
   * @param args
   */
  public static void main(String[] args) {
      LinkedHashMap<Boo,String> map = new LinkedHashMap<Boo,String>();
    map.put(new Boo("first"),"first");

  }

}
TOP

Related Classes of collections.maps.LinkedhashMapUsing

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.