Package com.google.common.collect

Examples of com.google.common.collect.BiMap


    @SuppressWarnings({ "rawtypes", "unchecked" })
    private static void overwrite_do(RegistryNamespaced registry, String name, Object object, Object oldThing) {

      int id = registry.getIDForObject(oldThing);
      BiMap map = ((BiMap) registry.registryObjects);
      registry.underlyingIntegerMap.func_148746_a(object, id);
      map.remove(name);
      map.forcePut(name, object);
    }
View Full Code Here

TOP

Related Classes of com.google.common.collect.BiMap

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.