Package com.dotcms.repackage.gnu.trove

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


    }
  }

  public static Set getHashSet() {
    if (TROVE) {
      return new THashSet();
    }
    else {
      return new HashSet();
    }
  }
View Full Code Here


    }
  }

  public static Set getHashSet(int capacity) {
    if (TROVE) {
      return new THashSet(capacity);
    }
    else {
      return new HashSet(capacity);
    }
  }
View Full Code Here

TOP

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

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.