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

com.google.common.collect.MapBuilder Maven / Gradle / Ivy

There is a newer version: 5.2.0
Show newest version
package com.google.common.collect;

import java.util.concurrent.ConcurrentMap;
import static com.google.common.base.DeepEquivalence.DEEP_EQUIVALENCE;

/**
 * 
 * @author guyadong
 *
 */
public class MapBuilder {

	/**
	 * 创建支持Object[]为key的map
	 */
	public static  ConcurrentMap newConcurrentMap() {
		return new MapMaker().keyEquivalence(DEEP_EQUIVALENCE).makeMap();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy