Tabnine Logo
SuperProperties.keySet
Code IndexAdd Tabnine to your IDE (free)

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

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

origin: org.apache.geronimo.ext.openejb/openejb-core

  private String normalize(String property){
    if (!caseInsensitive) {
      return property;
    }

    if (super.containsKey(property)){
      return property;
    }

    for (Object o : keySet()) {
      if (o instanceof String) {
        String key = (String) o;
        if (key.equalsIgnoreCase(property)) return key;
      }
    }

    if (defaults != null) {
      for (Object o : defaults.keySet()) {
        if (o instanceof String) {
          String key = (String) o;
          if (key.equalsIgnoreCase(property)) return key;
        }
      }
    }

    return property;
  }
}
origin: org.apache.tomee/openejb-core

for (final Object o : keySet()) {
  if (o instanceof String) {
    final String key = (String) o;
origin: org.apache.openejb/openejb-core

private String normalize(final String property) {
  if (!caseInsensitive) {
    return property;
  }
  if (super.containsKey(property)) {
    return property;
  }
  String key = findKey(property, keySet());
  if (key != null) {
    return key;
  }
  if (defaults != null) {
    key = findKey(property, defaults.keySet());
    if (key != null) {
      return key;
    }
  }
  return property;
}
origin: org.apache.tomee/openejb-core

out.println("## Properties");
out.println();
for (final Object key : properties.keySet()) {
  if (key instanceof String) {
    final String name = (String) key;
origin: org.apache.openejb/openejb-core

out.println("## Properties");
out.println();
for (final Object key : properties.keySet()) {
  if (key instanceof String) {
    final String name = (String) key;
origin: org.apache.geronimo.ext.openejb/openejb-core

out.println("    || Property Name || Description ||");
for (Object key : properties.keySet()) {
  if (key instanceof String) {
    String name = (String) key;
org.apache.openejb.utilSuperPropertieskeySet

Javadoc

Returns an unmodifiable view of the keys.

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,
  • keys,
  • normalize,
  • propertyNames,
  • put

Popular in Java

  • Making http requests using okhttp
  • setScale (BigDecimal)
  • getSystemService (Context)
  • requestLocationUpdates (LocationManager)
  • Component (java.awt)
    A component is an object having a graphical representation that can be displayed on the screen and t
  • Arrays (java.util)
    This class contains various methods for manipulating arrays (such as sorting and searching). This cl
  • HashMap (java.util)
    HashMap is an implementation of Map. All optional operations are supported.All elements are permitte
  • JTextField (javax.swing)
  • StringUtils (org.apache.commons.lang)
    Operations on java.lang.String that arenull safe. * IsEmpty/IsBlank - checks if a String contains
  • Runner (org.openjdk.jmh.runner)
  • Top 12 Jupyter Notebook extensions
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