Java String Remove removePropertyNameModifier(String name)

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

Description

Removes a property name modifier.

License

Open Source License

Declaration

public static void removePropertyNameModifier(String name) 

Method Source Code

//package com.java2s;
/*//  ww w .  j a v  a2s .  com
 * @(#)ResourceBundleUtil.java
 *
 * Copyright (c) 1996-2010 by the original authors of JHotDraw and all its
 * contributors. All rights reserved.
 *
 * You may not use, copy or modify this file, except in compliance with the
 * license agreement you entered into with the copyright holders. For details
 * see accompanying license terms.
 */

import java.util.*;

public class Main {
    /**
     * The global map of property name modifiers.
     * The key of this map is the name of the property name modifier,
     * the value of this map is a fallback chain.
     */
    private static HashMap<String, String[]> propertyNameModifiers = new HashMap<String, String[]>();

    /**
     * Removes a property name modifier.
     */
    public static void removePropertyNameModifier(String name) {
        propertyNameModifiers.remove(name);
    }
}

Related

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