All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.becausetesting.collections.MapUtils Maven / Gradle / Ivy

There is a newer version: 1.1.3
Show newest version
/**
 * Project Name:commons
 * File Name:MapUtils.java
 * Package Name:com.github.becausetesting.collections
 * Date:Apr 24, 20164:44:57 PM
 * Copyright (c) 2016, [email protected] All Rights Reserved.
 *
*/

package com.github.becausetesting.collections;

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

/**
 * ClassName:MapUtils  
 * Function: TODO ADD FUNCTION.  
 * Reason:	 TODO ADD REASON.  
 * Date:     Apr 24, 2016 4:44:57 PM 
 * @author   [email protected]
 * @version  1.0.0
 * @since    JDK 1.8 
 */
public class MapUtils {

	
	
	public void iteratorMap(){
		Map mapobj=new HashMap<>();
		Set> entrySet = mapobj.entrySet();
		
		Iterator> iterator = entrySet.iterator();
		
		Set keySet = mapobj.keySet();
		
	}
	
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy