Uses of Class
org.knime.base.node.viz.aggregation.AggregationMethod

Packages that use AggregationMethod
org.knime.base.node.viz.aggregation This package contains all data models and some utility classes which are used in the different aggregation visualization implementations like pie chart and histogram. 
org.knime.base.node.viz.aggregation.util This package contains classes that are used in all aggregating visualisations. 
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.impl This package contains the different plotter implementations of the histogram and the root class AbstractHistogramPlotter and AbstractHistogramProperties that need to be implemented by the concrete implementation. 
org.knime.base.node.viz.histogram.impl.fixed This is the memory saving implementation of the abstract histogram plotter. 
org.knime.base.node.viz.histogram.impl.interactive This is the interactive implementation of the abstract histogram plotter. 
org.knime.base.node.viz.pie.datamodel This package contains the pie chart data model classes. 
org.knime.base.node.viz.pie.impl This package contains the plotter framework implementation classes. 
org.knime.base.node.viz.pie.impl.fixed This package contains the fixed pie chart plotter classes. 
org.knime.base.node.viz.pie.impl.interactive This package contains the interactive pie chart plotter classes. 
 

Uses of AggregationMethod in org.knime.base.node.viz.aggregation
 

Methods in org.knime.base.node.viz.aggregation that return AggregationMethod
static AggregationMethod AggregationMethod.getDefaultMethod()
           
static AggregationMethod AggregationMethod.getMethod4Command(String action)
          Returns the aggregation method for the given name.
static AggregationMethod AggregationMethod.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static AggregationMethod[] AggregationMethod.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in org.knime.base.node.viz.aggregation with parameters of type AggregationMethod
 double AggregationValSubModel.getAggregationValue(AggregationMethod method)
           
 double AggregationModel.getAggregationValue(AggregationMethod method)
           
 double AggregationValModel.getAggregationValue(AggregationMethod method)
          
 

Uses of AggregationMethod in org.knime.base.node.viz.aggregation.util
 

Methods in org.knime.base.node.viz.aggregation.util with parameters of type AggregationMethod
static String GUIUtils.createLabel(double aggrVal, int noOfDigits, AggregationMethod aggrMethod)
           
static String GUIUtils.createLabel(double aggrVal, int noOfDigits, AggregationMethod aggrMethod, ValueScale scale)
           
 

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

Methods in org.knime.base.node.viz.histogram.datamodel that return AggregationMethod
 AggregationMethod AbstractHistogramVizModel.getAggregationMethod()
           
 AggregationMethod FixedHistogramDataModel.getAggrMethod()
           
 AggregationMethod AbstractHistogramVizModel.HistogramHiliteCalculator.getAggrMethod()
           
 

Methods in org.knime.base.node.viz.histogram.datamodel with parameters of type AggregationMethod
 double BarDataModel.getMaxAggregationValue(AggregationMethod method, HistogramLayout layout)
           
 double BinDataModel.getMaxAggregationValue(AggregationMethod method, HistogramLayout layout)
           
 double BarDataModel.getMinAggregationValue(AggregationMethod method, HistogramLayout layout)
           
 double BinDataModel.getMinAggregationValue(AggregationMethod method, HistogramLayout layout)
           
 boolean AbstractHistogramVizModel.setAggregationMethod(AggregationMethod aggrMethod)
           
 

Constructors in org.knime.base.node.viz.histogram.datamodel with parameters of type AggregationMethod
AbstractHistogramVizModel(List<Color> rowColors, AggregationMethod aggrMethod, HistogramLayout layout, int noOfBins)
          Constructor for class HistogramVizModel.
FixedHistogramDataModel(DataColumnSpec xColSpec, AggregationMethod aggrMethod, Collection<ColorColumn> aggrColumns, int noOfBins)
          Constructor for class HistogramDataModel.
FixedHistogramVizModel(List<Color> rowColors, List<BinDataModel> bins, BinDataModel missingValueBin, DataColumnSpec xColSpec, Collection<ColorColumn> aggrColumns, AggregationMethod aggrMethod, HistogramLayout layout)
          Constructor for class HistogramVizModel.
InteractiveHistogramVizModel(List<Color> rowColors, AggregationMethod aggrMethod, HistogramLayout layout, DataTableSpec spec, List<DataRow> rows, DataColumnSpec xColSpec, Collection<ColorColumn> aggrColumns, int noOfBins)
          Constructor for class InteractiveHistogramVizModel.
 

Uses of AggregationMethod in org.knime.base.node.viz.histogram.impl
 

Methods in org.knime.base.node.viz.histogram.impl that return AggregationMethod
 AggregationMethod AbstractHistogramProperties.getSelectedAggrMethod()
           
 

Methods in org.knime.base.node.viz.histogram.impl with parameters of type AggregationMethod
 boolean AbstractHistogramPlotter.setAggregationMethod(AggregationMethod aggrMethod)
          Sets new aggregation columns and recalculates/repaints.
abstract  void AbstractHistogramProperties.updateColumnSelection(DataTableSpec spec, String xColName, Collection<ColorColumn> yColumns, AggregationMethod aggrMethod)
           
 

Uses of AggregationMethod in org.knime.base.node.viz.histogram.impl.fixed
 

Methods in org.knime.base.node.viz.histogram.impl.fixed with parameters of type AggregationMethod
 void FixedHistogramProperties.updateColumnSelection(DataTableSpec spec, String xColName, Collection<ColorColumn> aggrColumns, AggregationMethod aggrMethod)
          
 

Uses of AggregationMethod in org.knime.base.node.viz.histogram.impl.interactive
 

Methods in org.knime.base.node.viz.histogram.impl.interactive with parameters of type AggregationMethod
 boolean InteractiveHistogramPlotter.setAggregationMethod(AggregationMethod aggrMethod)
          Sets new aggregation columns and recalculates/repaints.
 void InteractiveHistogramProperties.updateColumnSelection(DataTableSpec spec, String xColName, Collection<ColorColumn> aggrColumns, AggregationMethod aggrMethod)
          
 

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

Methods in org.knime.base.node.viz.pie.datamodel that return AggregationMethod
 AggregationMethod PieVizModel.getAggregationMethod()
           
 AggregationMethod PieHiliteCalculator.getAggrMethod()
           
 

Methods in org.knime.base.node.viz.pie.datamodel with parameters of type AggregationMethod
 boolean PieVizModel.setAggregationMethod(AggregationMethod aggrMethod)
           
 

Uses of AggregationMethod in org.knime.base.node.viz.pie.impl
 

Methods in org.knime.base.node.viz.pie.impl with parameters of type AggregationMethod
protected abstract  void PieProperties.onSelectAggrMethod(AggregationMethod aggrMethod)
           
 

Uses of AggregationMethod in org.knime.base.node.viz.pie.impl.fixed
 

Methods in org.knime.base.node.viz.pie.impl.fixed with parameters of type AggregationMethod
protected  void FixedPieProperties.onSelectAggrMethod(AggregationMethod aggrMethod)
          
 

Uses of AggregationMethod in org.knime.base.node.viz.pie.impl.interactive
 

Methods in org.knime.base.node.viz.pie.impl.interactive with parameters of type AggregationMethod
protected  void InteractivePieProperties.onSelectAggrMethod(AggregationMethod aggrMethod)
          
 



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.