congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
Tabnine Logo
SuperProperties.setCaseInsensitive
Code IndexAdd Tabnine to your IDE (free)

How to use
setCaseInsensitive
method
in
org.apache.openejb.util.SuperProperties

Best Java code snippets using org.apache.openejb.util.SuperProperties.setCaseInsensitive (Showing top 4 results out of 315)

origin: org.apache.tomee/openejb-core

public SuperProperties caseInsensitive(final boolean caseInsensitive) {
  setCaseInsensitive(caseInsensitive);
  return this;
}
origin: org.apache.openejb/openejb-core

public SuperProperties caseInsensitive(final boolean caseInsensitive) {
  setCaseInsensitive(caseInsensitive);
  return this;
}
origin: org.apache.openejb/openejb-core

/**
 * Gets the value of the properties property.
 * <p/>
 * <p/>
 * This accessor method returns a reference to the live Properties Object,
 * not a snapshot. Therefore any modification you make to the
 * returned Properties will be present inside the JAXB object.
 * This is why there is not a <CODE>set</CODE> method for the properties property.
 * <p/>
 * <p/>
 * For example, to add a new value, do as follows:
 * <pre>
 *    getProperties().setProperty(key, value);
 * </pre>
 * <p/>
 * <p/>
 * <p/>
 */
public Properties getProperties() {
  if (properties == null) {
    final SuperProperties sp = new SuperProperties();
    sp.setCaseInsensitive(true);
    properties = sp;
  }
  return properties;
}
origin: org.apache.tomee/openejb-core

/**
 * Gets the value of the properties property.
 * <p/>
 * <p/>
 * This accessor method returns a reference to the live Properties Object,
 * not a snapshot. Therefore any modification you make to the
 * returned Properties will be present inside the JAXB object.
 * This is why there is not a <CODE>set</CODE> method for the properties property.
 * <p/>
 * <p/>
 * For example, to add a new value, do as follows:
 * <pre>
 *    getProperties().setProperty(key, value);
 * </pre>
 * <p/>
 * <p/>
 * <p/>
 */
public Properties getProperties() {
  if (properties == null) {
    final SuperProperties sp = new SuperProperties();
    sp.setCaseInsensitive(true);
    properties = sp;
  }
  return properties;
}
org.apache.openejb.utilSuperPropertiessetCaseInsensitive

Javadoc

Sets the sensitive of lookups.

Popular methods of SuperProperties

  • <init>
    Constructs a new Properties object using the specified default properties.
  • caseInsensitive
  • entrySet
    Returns an unmodifiable view of the entries.
  • getProperty
  • putAll
  • containsKey
  • decodeEscapeChar
  • decodeNextCharacter
  • dumpComment
  • dumpString
  • get
  • getAttributes
    Searches for the attributes associated with the specified property. If the property is not found, lo
  • get,
  • getAttributes,
  • getComment,
  • getDocumentBuilder,
  • isEmpty,
  • keySet,
  • keys,
  • normalize,
  • propertyNames,
  • put

Popular in Java

  • Making http requests using okhttp
  • getSharedPreferences (Context)
  • scheduleAtFixedRate (ScheduledExecutorService)
  • onCreateOptionsMenu (Activity)
  • RandomAccessFile (java.io)
    Allows reading from and writing to a file in a random-access manner. This is different from the uni-
  • Queue (java.util)
    A collection designed for holding elements prior to processing. Besides basic java.util.Collection o
  • ResourceBundle (java.util)
    ResourceBundle is an abstract class which is the superclass of classes which provide Locale-specifi
  • SSLHandshakeException (javax.net.ssl)
    The exception that is thrown when a handshake could not be completed successfully.
  • Filter (javax.servlet)
    A filter is an object that performs filtering tasks on either the request to a resource (a servlet o
  • XPath (javax.xml.xpath)
    XPath provides access to the XPath evaluation environment and expressions. Evaluation of XPath Expr
  • Top 17 PhpStorm Plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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