
com.github.becausetesting.collections.MapUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commons Show documentation
Show all versions of commons Show documentation
A common libraries used for testing framework.
/**
* 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