Tabnine Logo
Configuration.getConfigProperty
Code IndexAdd Tabnine to your IDE (free)

How to use
getConfigProperty
method
in
org.jfree.util.Configuration

Best Java code snippets using org.jfree.util.Configuration.getConfigProperty (Showing top 20 results out of 315)

origin: jfree/jcommon

/**
 * Checks, whether a given property is defined.
 *
 * @param name the name of the property
 * @return true, if the property is defined, false otherwise.
 */
public boolean isPropertySet (final String name)
{
 return this.parent.getConfigProperty(name) != null;
}
origin: org.jfree/jcommon

/**
 * Returns the configuration property with the specified key.
 *
 * @param key the property key.
 * @return the property value.
 */
public String getConfigProperty (final String key)
{
 return this.parent.getConfigProperty(key);
}
origin: jfree/jcommon

/**
 * Returns the configuration property with the specified key.
 *
 * @param key the property key.
 * @return the property value.
 */
public String getConfigProperty (final String key)
{
 return this.parent.getConfigProperty(key);
}
origin: org.jfree/com.springsource.org.jfree

/**
 * Checks, whether a given property is defined.
 *
 * @param name the name of the property
 * @return true, if the property is defined, false otherwise.
 */
public boolean isPropertySet (final String name)
{
 return parent.getConfigProperty(name) != null;
}
origin: org.jfree/jcommon

/**
 * Checks, whether a given property is defined.
 *
 * @param name the name of the property
 * @return true, if the property is defined, false otherwise.
 */
public boolean isPropertySet (final String name)
{
 return this.parent.getConfigProperty(name) != null;
}
origin: org.jfree/com.springsource.org.jfree

/**
 * Returns the configuration property with the specified key.
 *
 * @param key the property key.
 * @return the property value.
 */
public String getConfigProperty (final String key)
{
 return parent.getConfigProperty(key);
}
origin: org.jfree/jcommon

/**
 * Returns the configuration property with the specified key (or the specified default
 * value if there is no such property).
 * <p>
 * If the property is not defined in this configuration, the code will lookup the
 * property in the parent configuration.</p>
 *
 * @param key          the property key.
 * @param defaultValue the default value.
 * @return the property value.
 */
public String getConfigProperty (final String key, final String defaultValue)
{
 return this.parent.getConfigProperty(key, defaultValue);
}
origin: jfree/jcommon

/**
 * Returns the configuration property with the specified key (or the specified default
 * value if there is no such property).
 * <p/>
 * If the property is not defined in this configuration, the code will lookup the
 * property in the parent configuration.
 *
 * @param key          the property key.
 * @param defaultValue the default value.
 * @return the property value.
 */
public String getConfigProperty (final String key, final String defaultValue)
{
 return this.parent.getConfigProperty(key, defaultValue);
}
origin: org.jfree/com.springsource.org.jfree

/**
 * Returns the boolean value of a given configuration property. The boolean value true
 * is returned, if the contained string is equal to 'true'. If the property is not set,
 * the default value is returned.
 *
 * @param name the name of the property
 * @param defaultValue the default value to be returned if the property is not set
 * @return the boolean value of the property.
 */
public boolean getBoolProperty (final String name,
                final boolean defaultValue)
{
 return "true".equals(parent.getConfigProperty(name, String.valueOf(defaultValue)));
}
origin: jfree/jcommon

/**
 * Returns the boolean value of a given configuration property. The boolean value true
 * is returned, if the contained string is equal to 'true'. If the property is not set,
 * the default value is returned.
 *
 * @param name the name of the property
 * @param defaultValue the default value to be returned if the property is not set
 * @return the boolean value of the property.
 */
public boolean getBoolProperty (final String name,
                final boolean defaultValue)
{
 return "true".equals(this.parent.getConfigProperty(name, String.valueOf(defaultValue)));
}
origin: org.jfree/jcommon

/**
 * Returns the boolean value of a given configuration property. The boolean value true
 * is returned, if the contained string is equal to 'true'. If the property is not set,
 * the default value is returned.
 *
 * @param name the name of the property
 * @param defaultValue the default value to be returned if the property is not set
 * @return the boolean value of the property.
 */
public boolean getBoolProperty (final String name,
                final boolean defaultValue)
{
 return "true".equals(this.parent.getConfigProperty(name, String.valueOf(defaultValue)));
}
origin: jfree/jcommon

/**
 * Returns <code>true</code> if logging is disabled, and <code>false</code> otherwise.
 *
 * @return true, if logging is completly disabled, false otherwise.
 */
public static boolean isDisableLogging()
{
 return BaseBoot.getInstance().getGlobalConfig().getConfigProperty
   (DISABLE_LOGGING, DISABLE_LOGGING_DEFAULT).equalsIgnoreCase("true");
}
origin: org.jfree/com.springsource.org.jfree

/**
 * Returns <code>true</code> if logging is disabled, and <code>false</code> otherwise.
 *
 * @return true, if logging is completly disabled, false otherwise.
 */
public static boolean isDisableLogging()
{
 return BaseBoot.getInstance().getGlobalConfig().getConfigProperty
   (DISABLE_LOGGING, DISABLE_LOGGING_DEFAULT).equalsIgnoreCase("true");
}
origin: org.jfree/jcommon

/**
 * Returns <code>true</code> if logging is disabled, and <code>false</code> otherwise.
 *
 * @return true, if logging is completly disabled, false otherwise.
 */
public static boolean isDisableLogging()
{
 return BaseBoot.getInstance().getGlobalConfig().getConfigProperty
   (DISABLE_LOGGING, DISABLE_LOGGING_DEFAULT).equalsIgnoreCase("true");
}
origin: jfree/jcommon

/**
 * Returns the log level.
 *
 * @return the log level.
 */
public static String getLogLevel()
{
 return BaseBoot.getInstance().getGlobalConfig().getConfigProperty
     (LOGLEVEL, LOGLEVEL_DEFAULT);
}
origin: org.jfree/jcommon

/**
 * Returns the log level.
 *
 * @return the log level.
 */
public static String getLogLevel()
{
 return BaseBoot.getInstance().getGlobalConfig().getConfigProperty
     (LOGLEVEL, LOGLEVEL_DEFAULT);
}
origin: org.jfree/com.springsource.org.jfree

/**
 * Returns the current log target.
 *
 * @return the log target.
 */
public static String getLogTarget()
{
 return BaseBoot.getInstance().getGlobalConfig().getConfigProperty
     (LOGTARGET, LOGTARGET_DEFAULT);
}
origin: jfree/jcommon

/**
 * Returns the current log target.
 *
 * @return the log target.
 */
public static String getLogTarget()
{
 return BaseBoot.getInstance().getGlobalConfig().getConfigProperty
     (LOGTARGET, LOGTARGET_DEFAULT);
}
origin: org.jfree/jcommon

/**
 * Returns the current log target.
 *
 * @return the log target.
 */
public static String getLogTarget()
{
 return BaseBoot.getInstance().getGlobalConfig().getConfigProperty
     (LOGTARGET, LOGTARGET_DEFAULT);
}
origin: org.jfree/com.springsource.org.jfree

/**
 * Returns the log level.
 *
 * @return the log level.
 */
public static String getLogLevel()
{
 return BaseBoot.getInstance().getGlobalConfig().getConfigProperty
     (LOGLEVEL, LOGLEVEL_DEFAULT);
}
org.jfree.utilConfigurationgetConfigProperty

Javadoc

Returns the configuration property with the specified key.

Popular methods of Configuration

  • clone
    Returns a clone of the object.
  • findPropertyKeys
    Returns all keys with the given prefix.
  • getConfigProperties
    Returns the configuration properties.

Popular in Java

  • Creating JSON documents from java classes using gson
  • notifyDataSetChanged (ArrayAdapter)
  • scheduleAtFixedRate (ScheduledExecutorService)
  • addToBackStack (FragmentTransaction)
  • IOException (java.io)
    Signals a general, I/O-related error. Error details may be specified when calling the constructor, a
  • OutputStream (java.io)
    A writable sink for bytes.Most clients will use output streams that write data to the file system (
  • SocketException (java.net)
    This SocketException may be thrown during socket creation or setting options, and is the superclass
  • KeyStore (java.security)
    KeyStore is responsible for maintaining cryptographic keys and their owners. The type of the syste
  • MessageDigest (java.security)
    Uses a one-way hash function to turn an arbitrary number of bytes into a fixed-length byte sequence.
  • DateFormat (java.text)
    Formats or parses dates and times.This class provides factories for obtaining instances configured f
  • Top PhpStorm plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now