Interface ConfigurationGroup

    • Method Detail

      • getNames

        java.lang.String[] getNames()
        Gets the group names for this ConfigurationGroup object.
        Returns:
        an array of group names. Names are not allowed to contain whitespace.
      • setNames

        void setNames​(java.lang.String[] aNames)
        Sets the group names for this ConfigurationGroup object.
        Parameters:
        aNames - an array of group names. Names are not allowed to contain whitespace.
      • getConfigurationParameters

        ConfigurationParameter[] getConfigurationParameters()
        Gets the configuration parameters in this group.
        Returns:
        an array containing ConfigurationParameter objects, each of which describes a configuration parameter in this group.
      • setConfigurationParameters

        void setConfigurationParameters​(ConfigurationParameter[] aParams)
        Sets the configuration parameters in this group.
        Parameters:
        aParams - an array containing ConfigurationParameter objects, each of which describes a configuration parameter in this group.
      • addConfigurationParameter

        void addConfigurationParameter​(ConfigurationParameter aConfigurationParameter)
        Adds a Configuration Parameter to this group.
        Parameters:
        aConfigurationParameter - the Configuration Parameter to add
        Throws:
        UIMA_UnsupportedOperationException - if this object is not modifiable
      • removeConfigurationParameter

        void removeConfigurationParameter​(ConfigurationParameter aConfigurationParameter)
        Removes an Configuration Parameter from this group.
        Parameters:
        aConfigurationParameter - the Configuration Parameter to remove (must be == with an ConfigurationParameter in this group, or this method will do nothing).
        Throws:
        UIMA_UnsupportedOperationException - if this object is not modifiable