Package com.dotcms.repackage.gnu.trove

Examples of com.dotcms.repackage.gnu.trove.THashMap


  public static final boolean TROVE = GetterUtil.get(
    SystemProperties.get("trove"), true);

  public static Map getHashMap() {
    if (TROVE) {
      return new THashMap();
    }
    else {
      return new HashMap();
    }
  }
View Full Code Here


    }
  }

  public static Map getHashMap(int capacity) {
    if (TROVE) {
      return new THashMap(capacity);
    }
    else {
      return new HashMap(capacity);
    }
  }
View Full Code Here

TOP

Related Classes of com.dotcms.repackage.gnu.trove.THashMap

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.