Codota Logo
DefaultConfiguration.remove
Code IndexAdd Codota to your IDE (free)

How to use
remove
method
in
org.jfree.util.DefaultConfiguration

Best Java code snippets using org.jfree.util.DefaultConfiguration.remove (Showing top 4 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
StringBuilder s =
  • Codota Iconnew StringBuilder()
  • Codota Iconnew StringBuilder(32)
  • Codota IconString str;new StringBuilder(str)
  • Smart code suggestions by Codota
}
origin: jfree/jcommon

/**
 * Sets a parser configuration value.
 *
 * @param key   the key.
 * @param value the value.
 */
public void setConfigProperty(final String key, final String value) {
  if (value == null) {
    this.parserConfiguration.remove(key);
  }
  else {
    this.parserConfiguration.setProperty(key, value);
  }
}
origin: jfree/jcommon

 /**
  * Sets the value of a configuration property.
  *
  * @param key   the property key.
  * @param value the property value.
  */
 public void setConfigProperty(final String key, final String value)
 {
  if (value == null)
  {
   remove(key);
  }
  else
  {
   setProperty(key, value);
  }
 }
}
origin: org.jfree/jcommon

 /**
  * Sets the value of a configuration property.
  *
  * @param key   the property key.
  * @param value the property value.
  */
 public void setConfigProperty(final String key, final String value)
 {
  if (value == null)
  {
   remove(key);
  }
  else
  {
   setProperty(key, value);
  }
 }
}
origin: org.jfree/com.springsource.org.jfree

 /**
  * Sets the value of a configuration property.
  *
  * @param key   the property key.
  * @param value the property value.
  */
 public void setConfigProperty(final String key, final String value)
 {
  if (value == null)
  {
   remove(key);
  }
  else
  {
   setProperty(key, value);
  }
 }
}
org.jfree.utilDefaultConfigurationremove

Popular methods of DefaultConfiguration

  • getProperty
  • keys
  • setProperty
  • <init>
    Creates an empty property list with no default values.
  • clone
  • findPropertyKeys
    Searches all property keys that start with a given prefix.
  • getConfigProperties
    Returns an enumeration of the property keys.
  • getConfigProperty
    Returns the configuration property with the specified key (or the specified default value if there i

Popular in Java

  • Running tasks concurrently on multiple threads
  • scheduleAtFixedRate (ScheduledExecutorService)
  • compareTo (BigDecimal)
    Compares this BigDecimal with the specified BigDecimal. Two BigDecimal objects that are equal in val
  • putExtra (Intent)
  • BufferedWriter (java.io)
    Wraps an existing Writer and buffers the output. Expensive interaction with the underlying reader is
  • KeyStore (java.security)
    This class represents an in-memory collection of keys and certificates. It manages two types of entr
  • NoSuchElementException (java.util)
    Thrown when trying to retrieve an element past the end of an Enumeration or Iterator.
  • Timer (java.util)
    A facility for threads to schedule tasks for future execution in a background thread. Tasks may be s
  • ConcurrentHashMap (java.util.concurrent)
    A hash table supporting full concurrency of retrievals and adjustable expected concurrency for updat
  • Options (org.apache.commons.cli)
    Main entry-point into the library. Options represents a collection of Option objects, which describ
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now