Java Map Remove removeApiUuidMap(String apiName)

Here you can find the source of removeApiUuidMap(String apiName)

Description

remove Api Uuid Map

License

Apache License

Declaration

public static void removeApiUuidMap(String apiName) 

Method Source Code


//package com.java2s;
//License from project: Apache License 

import java.util.HashMap;
import java.util.Map;

public class Main {
    private static Map<String, Integer> apiUuidMap = new HashMap<>();

    public static void removeApiUuidMap(String apiName) {
        apiUuidMap.remove(apiName);/*from w ww  .  j a va  2  s .c  o  m*/
    }
}

Related

  1. removeAll(final Map target, final Iterable keys, Collection values)
  2. removeAll(Map map, Set keys)
  3. removeAllFromCollection(Map> map, Object key, Collection values)
  4. removeAllNullValueEntry(Map source)
  5. removeAndCleanFromCollectionMap(KeyT key, ValT toBeRemoved, Map> map)
  6. removeClassFromMap(final Map the_map, final String the_class_name)
  7. removeColor(Map windowColorCountMap, int windowColorCount, int lastColor)
  8. removeDefaultAnnotationPackage(final String packageName, final Map context)
  9. removeDoubleQuotes(Map argMap)