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

com.ttianjun.common.kit.Lists Maven / Gradle / Ivy

package com.ttianjun.common.kit;

import java.util.ArrayList;
import java.util.HashMap;

public class Lists {
	/**
	 * List> classList = Lists.newArrayList();
	 */
	public static  ArrayList newArrayList(){
		return new ArrayList();
	}
	
	/**
	 * Map> m = Lists.newHashMap();   
	 */
	public static  HashMap newHashMap(){    
	    return new HashMap();    
	}   
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy