Uses of Class
org.knime.core.node.config.Config

Packages that use Config
org.knime.base.data.bitvector This package contains classes responsible for the representation and conversion of bit vectors. 
org.knime.base.node.mine.bayes.naivebayes.datamodel This package implements the naive bayes algorithm for numerical and nominal attributes. 
org.knime.base.node.mine.decisiontree2   
org.knime.base.node.preproc.discretization.caim2 Contains two nodes for class supervised binning and applying such a learned binning model to new data. 
org.knime.base.node.viz.histogram.datamodel This package contains all data and visualization models which are used in the different histogram implementations. 
org.knime.base.node.viz.histogram.util Contains utility classes which performe binning or which are used in dialogs to select the aggregation columns. 
org.knime.base.node.viz.pie.datamodel This package contains the pie chart data model classes. 
org.knime.core.node Contains all classes needed to implement a new node in the workflow. 
org.knime.core.node.config Contains a utility class Config to store a general state (i.e. 
 

Uses of Config in org.knime.base.data.bitvector
 

Methods in org.knime.base.data.bitvector with parameters of type Config
static DataCell BitVectorCell.load(Config config)
          Deprecated. Loads a new cell using the properties from the given config.
 void BitVectorCell.save(Config config)
          Deprecated. Saves this cell to the config.
 

Uses of Config in org.knime.base.node.mine.bayes.naivebayes.datamodel
 

Methods in org.knime.base.node.mine.bayes.naivebayes.datamodel with parameters of type Config
(package private) static AttributeModel AttributeModel.loadModel(Config config)
           
(package private)  void AttributeModel.saveModel(Config config)
           
(package private)  void NominalAttributeModel.saveModelInternal(Config config)
          
(package private) abstract  void AttributeModel.saveModelInternal(Config config)
           
(package private)  void NumericalAttributeModel.saveModelInternal(Config config)
          
(package private)  void ClassAttributeModel.saveModelInternal(Config config)
          
 

Constructors in org.knime.base.node.mine.bayes.naivebayes.datamodel with parameters of type Config
ClassAttributeModel(String attributeName, int noOfMissingVals, boolean skipMissingVals, Config config)
          Constructor for class ClassModel.
NominalAttributeModel(String attributeName, int noOfMissingVals, boolean skipMissingVals, Config config)
          Constructor for class NominalAttributeModel.
NumericalAttributeModel(String attributeName, boolean skipMissingVals, int noOfMissingVals, Config config)
          Constructor for class NumericalAttributeModel.
 

Uses of Config in org.knime.base.node.mine.decisiontree2
 

Methods in org.knime.base.node.mine.decisiontree2 with parameters of type Config
static PMMLPredicate PMMLPredicate.getPredicateForConfig(Config conf)
          Returns the correct PMMLPredicate for a config object.
 void PMMLSimplePredicate.loadFromPredParams(Config conf)
          Load internal predicate settings from a config object.
 void PMMLFalsePredicate.loadFromPredParams(Config conf)
          Load internal predicate settings from a config object.
 void PMMLSimpleSetPredicate.loadFromPredParams(Config conf)
          Load internal predicate settings from a config object.
 void PMMLTruePredicate.loadFromPredParams(Config conf)
          Load internal predicate settings from a config object.
abstract  void PMMLPredicate.loadFromPredParams(Config conf)
          Load internal predicate settings from a config object.
 void PMMLCompoundPredicate.loadFromPredParams(Config conf)
          Load internal predicate settings from a config object.
 void PMMLSimplePredicate.saveToPredParams(Config conf)
          Save internal predicate settings to a config object.
 void PMMLFalsePredicate.saveToPredParams(Config conf)
          Save internal predicate settings to a config object.
 void PMMLSimpleSetPredicate.saveToPredParams(Config conf)
          Save internal predicate settings to a config object.
 void PMMLTruePredicate.saveToPredParams(Config conf)
          Save internal predicate settings to a config object.
abstract  void PMMLPredicate.saveToPredParams(Config conf)
          Save internal predicate settings to a config object.
 void PMMLCompoundPredicate.saveToPredParams(Config conf)
          Save internal predicate settings to a config object.
 

Uses of Config in org.knime.base.node.preproc.discretization.caim2
 

Methods in org.knime.base.node.preproc.discretization.caim2 with parameters of type Config
 void DiscretizationScheme.saveToModelContent(Config modelContent)
          Saves this scheme to a ModelContentWO object.
 void Interval.saveToModelContent(Config modelContent)
          Saves this interval to a ModelContentWO object.
 

Constructors in org.knime.base.node.preproc.discretization.caim2 with parameters of type Config
DiscretizationScheme(Config content)
          Creates a DiscretizationScheme from a Config object.
Interval(Config content)
          Creates an interval from its boundaries and whether the boundaries belong to the interval or not.
 

Uses of Config in org.knime.base.node.viz.histogram.datamodel
 

Methods in org.knime.base.node.viz.histogram.datamodel with parameters of type Config
static BarDataModel BarDataModel.loadFromFile(Config config, ExecutionMonitor exec)
           
static BarElementDataModel BarElementDataModel.loadFromFile(Config config, ExecutionMonitor exec)
           
 

Uses of Config in org.knime.base.node.viz.histogram.util
 

Methods in org.knime.base.node.viz.histogram.util with parameters of type Config
static ColorColumn ColorColumn.loadFromFile(Config config, ExecutionMonitor exec)
           
 

Uses of Config in org.knime.base.node.viz.pie.datamodel
 

Methods in org.knime.base.node.viz.pie.datamodel with parameters of type Config
static PieSubSectionDataModel PieSubSectionDataModel.loadFromFile(Config config, ExecutionMonitor exec)
           
static PieSectionDataModel PieSectionDataModel.loadFromFile(Config config, ExecutionMonitor exec)
           
 

Uses of Config in org.knime.core.node
 

Subclasses of Config in org.knime.core.node
 class ModelContent
          This ModelContent is used to store XML-like model settings.
 class NodeSettings
          This class overwrites the general Config object and specializes some method to access NodeSettings object.
 

Methods in org.knime.core.node that return Config
 Config ModelContent.getInstance(String key)
          Creates a new Config of this type.
 Config NodeSettings.getInstance(String key)
          Creates a new Config of this type.
 

Uses of Config in org.knime.core.node.config
 

Methods in org.knime.core.node.config that return Config
 Config Config.addConfig(String key)
          Creates a new Config with the given key and returns it.
 Config ConfigWO.addConfig(String key)
          Creates and adds a new Config to this Config by the given key.
 Config Config.getConfig(String key)
          Retrieves Config by key.
 Config ConfigRO.getConfig(String key)
          Returns a Config for the given key.
protected abstract  Config Config.getInstance(String key)
          Creates a new Config of this type.
protected static Config Config.loadFromXML(Config config, InputStream in)
          Reads Config from XML into a new Config object.
protected static Config Config.readFromFile(ObjectInputStream ois)
          Creates new Config from the given file using the serialized object stream.
 

Methods in org.knime.core.node.config with parameters of type Config
protected  void Config.addConfig(Config config)
          Appends the given Config to this Config which has to directly derived from this class.
(package private) static void XMLContentHandler.asXML(Config c, ContentHandler handler)
          Utility method that writes the given config object to a content handler.
static ConfigEditTreeModel ConfigEditTreeModel.create(Config settingsTree)
          Parses a settings tree and creates an empty mask (for later modification).
static ConfigEditTreeModel ConfigEditTreeModel.create(Config settingsTree, Config variableTree)
          Factory method that parses the settings tree and constructs a new object of this class.
(package private) static void XMLConfig.load(Config c, InputStream in)
          Reads from the given input stream into the given config object.
protected static Config Config.loadFromXML(Config config, InputStream in)
          Reads Config from XML into a new Config object.
 List<FlowVariable> ConfigEditTreeModel.overwriteSettings(Config settingsTree, Map<String,FlowVariable> variables)
          Modifies the first argument to reflect the values of the mask represented by this object.
(package private) static void XMLConfig.save(Config config, OutputStream os)
          Saves given Config into an XML stream.
 void Config.DataCellEntry.saveToConfig(DataCell cell, Config config)
          Save this DataCell to the given Config.
 void Config.DataCellEntry.StringCellEntry.saveToConfig(DataCell cell, Config config)
          Save this DataCell to the given Config.
 void Config.DataCellEntry.DoubleCellEntry.saveToConfig(DataCell cell, Config config)
          Save this DataCell to the given Config.
 void Config.DataCellEntry.IntCellEntry.saveToConfig(DataCell cell, Config config)
          Save this DataCell to the given Config.
 void Config.DataCellEntry.DateAndTimeCellEntry.saveToConfig(DataCell cell, Config config)
          Save this DataCell to the given Config.
 void Config.DataCellEntry.MissingCellEntry.saveToConfig(DataCell cell, Config config)
          Save this DataCell to the given Config.
 void Config.DataCellEntry.ComplexNumberCellEntry.saveToConfig(DataCell cell, Config config)
          Save this DataCell to the given Config.
 void Config.DataCellEntry.FuzzyIntervalCellEntry.saveToConfig(DataCell cell, Config config)
          Save this DataCell to the given Config.
 void Config.DataCellEntry.FuzzyNumberCellEntry.saveToConfig(DataCell cell, Config config)
          Save this DataCell to the given Config.
 void ConfigEditTreeModel.writeVariablesTo(Config config)
          Write the mask to a config object (for storage in node settings object).
 

Constructors in org.knime.core.node.config with parameters of type Config
XMLContentHandler(Config config, String fileName)
          Creates new instance.
 



Copyright, 2003 - 2010. All rights reserved.
University of Konstanz, Germany.
Chair for Bioinformatics and Information Mining, Prof. Dr. Michael R. Berthold.
You may not modify, publish, transmit, transfer or sell, reproduce, create derivative works from, distribute, perform, display, or in any way exploit any of the content, in whole or in part, except as otherwise expressly permitted in writing by the copyright owner or as specified in the license file distributed with this product.