org.pentaho.di.trans.steps.univariatestats.UnivariateStatsData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kettle-engine Show documentation
Show all versions of kettle-engine Show documentation
Container pom for Pentaho Data Integration modules
The newest version!
/*! ******************************************************************************
*
* Pentaho Data Integration
*
* Copyright (C) 2002-2017 by Hitachi Vantara : http://www.pentaho.com
*
*******************************************************************************
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
******************************************************************************/
package org.pentaho.di.trans.steps.univariatestats;
import org.pentaho.di.core.row.RowMetaInterface;
import org.pentaho.di.trans.step.BaseStepData;
import org.pentaho.di.trans.step.StepDataInterface;
/**
* Holds temporary data and has routines for computing derived statistics.
*
* @author Mark Hall (mhall{[at]}pentaho.org)
* @version 1.0
*/
public class UnivariateStatsData extends BaseStepData implements StepDataInterface {
// this class contains intermediate results,
// info about the input format, derived output
// format etc.
// the input data format
protected RowMetaInterface m_inputRowMeta;
// the output data format
protected RowMetaInterface m_outputRowMeta;
/**
* contains the FieldIndexs - one for each UnivariateStatsMetaFunction
*/
protected FieldIndex[] m_indexes;
/**
* Creates a new UnivariateStatsData
instance.
*/
public UnivariateStatsData() {
super();
}
/**
* Set the FieldIndexes
*
* @param fis
* a FieldIndex[]
value
*/
public void setFieldIndexes( FieldIndex[] fis ) {
m_indexes = fis;
}
/**
* Get the fieldIndexes
*
* @return a FieldIndex[]
value
*/
public FieldIndex[] getFieldIndexes() {
return m_indexes;
}
/**
* Get the meta data for the input format
*
* @return a RowMetaInterface
value
*/
public RowMetaInterface getInputRowMeta() {
return m_inputRowMeta;
}
/**
* Save the meta data for the input format. (I'm not sure that this is really needed)
*
* @param rmi
* a RowMetaInterface
value
*/
public void setInputRowMeta( RowMetaInterface rmi ) {
m_inputRowMeta = rmi;
}
/**
* Get the meta data for the output format
*
* @return a RowMetaInterface
value
*/
public RowMetaInterface getOutputRowMeta() {
return m_outputRowMeta;
}
/**
* Set the meta data for the output format
*
* @param rmi
* a RowMetaInterface
value
*/
public void setOutputRowMeta( RowMetaInterface rmi ) {
m_outputRowMeta = rmi;
}
}