Tabnine Logo
ConfigurationParameterSettings.getSettingsForGroups
Code IndexAdd Tabnine to your IDE (free)

How to use
getSettingsForGroups
method
in
org.apache.uima.resource.metadata.ConfigurationParameterSettings

Best Java code snippets using org.apache.uima.resource.metadata.ConfigurationParameterSettings.getSettingsForGroups (Showing top 4 results out of 315)

origin: apache/ctakes

public void validateConfigurationParameterSettings() throws ResourceConfigurationException {
  ConfigurationParameterDeclarations cfgParamDecls = this.getConfigurationParameterDeclarations();
  ConfigurationParameterSettings cfgParamSettings = this.getConfigurationParameterSettings();
  NameValuePair[] nvps = cfgParamSettings.getParameterSettings();
  if ( nvps.length > 0 ) {
   this.validateConfigurationParameterSettings( nvps, (String) null, cfgParamDecls );
  } else {
   Map settingsForGroups = cfgParamSettings.getSettingsForGroups();
   Set entrySet = settingsForGroups.entrySet();
   Iterator it = entrySet.iterator();
   while ( it.hasNext() ) {
     Map.Entry entry = (Map.Entry) it.next();
     String groupName = (String) entry.getKey();
     nvps = (NameValuePair[]) entry.getValue();
     if ( nvps != null ) {
      this.validateConfigurationParameterSettings( nvps, groupName, cfgParamDecls );
     }
   }
  }
}
origin: apache/uima-uimaj

Map<String, NameValuePair[]> settingsForGroups = cfgParamSettings.getSettingsForGroups();
Set<Map.Entry<String, NameValuePair[]>> entrySet = settingsForGroups.entrySet();
Iterator<Entry<String, NameValuePair[]>> it = entrySet.iterator();
origin: apache/uima-uimaj

System.arraycopy(specificParamSettings, 0, mergedSettings,
    commonParamSettings.length, specificParamSettings.length);
settings.getSettingsForGroups().put(names[j], mergedSettings);
origin: apache/uima-uimaj

Map<String, NameValuePair[]> groups = parmSettings.getSettingsForGroups();
for (Map.Entry<String, NameValuePair[]> group : groups.entrySet()) {
 for (NameValuePair nvp : group.getValue()) {
org.apache.uima.resource.metadataConfigurationParameterSettingsgetSettingsForGroups

Javadoc

Gets the settings for configuration parameters that are defined within groups.

Popular methods of ConfigurationParameterSettings

  • setParameterValue
  • getParameterValue
  • getParameterSettings
  • setParameterSettings

Popular in Java

  • Updating database using SQL prepared statement
  • findViewById (Activity)
  • getContentResolver (Context)
  • onCreateOptionsMenu (Activity)
  • Component (java.awt)
    A component is an object having a graphical representation that can be displayed on the screen and t
  • FlowLayout (java.awt)
    A flow layout arranges components in a left-to-right flow, much like lines of text in a paragraph. F
  • FileWriter (java.io)
    A specialized Writer that writes to a file in the file system. All write requests made by calling me
  • Random (java.util)
    This class provides methods that return pseudo-random values.It is dangerous to seed Random with the
  • Timer (java.util)
    Timers schedule one-shot or recurring TimerTask for execution. Prefer java.util.concurrent.Scheduled
  • Modifier (javassist)
    The Modifier class provides static methods and constants to decode class and member access modifiers
  • CodeWhisperer 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