congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
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

  • Updating database using SQL prepared statement
  • findViewById (Activity)
  • getSupportFragmentManager (FragmentActivity)
  • runOnUiThread (Activity)
  • ByteBuffer (java.nio)
    A buffer for bytes. A byte buffer can be created in either one of the following ways: * #allocate
  • BitSet (java.util)
    The BitSet class implements abit array [http://en.wikipedia.org/wiki/Bit_array]. Each element is eit
  • Enumeration (java.util)
    A legacy iteration interface.New code should use Iterator instead. Iterator replaces the enumeration
  • Pattern (java.util.regex)
    Patterns are compiled regular expressions. In many cases, convenience methods such as String#matches
  • IOUtils (org.apache.commons.io)
    General IO stream manipulation utilities. This class provides static utility methods for input/outpu
  • Join (org.hibernate.mapping)
  • Github Copilot alternatives
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