Java String Remove removeProperty(String name)

Here you can find the source of removeProperty(String name)

Description

remove Property

License

Open Source License

Declaration

public static void removeProperty(String name) 

Method Source Code


//package com.java2s;
//License from project: Open Source License 

import java.util.*;

public class Main {
    static HashMap<String, String> _globals = new HashMap<String, String>();

    public static void removeProperty(String name) {
        _globals.remove(name);/*ww  w. j  a v  a  2  s. c  o  m*/
    }

    public static void remove(String name) {
        _globals.remove(name);
    }
}

Related

  1. removeImportClass(String className)
  2. removeKeyPrefix(Properties properties, String prefix)
  3. removeModuleReference(String allStr, String refStr)
  4. removeNewLineAndTab(String value)
  5. removePostfixedNewline(String s)
  6. removePropertyNameModifier(String name)
  7. removePunctuation(String str)
  8. removePunctuation(String value)
  9. removeRecursive(Object json, String keyToRemove)