com.google.common.collect.MapBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sql2java-base Show documentation
Show all versions of sql2java-base Show documentation
sql2java common class package
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();
}
}