Package org.pentaho.di.core.row

Examples of org.pentaho.di.core.row.RowMeta


  private void initMainRowStream() throws KettleException {

    // steps inputRowMeta might be null in case we have info steps only, or there's no input to begin with
    RowMetaInterface inputRowMeta = step.getInputRowMeta();
    if (inputRowMeta == null) {
      inputRowMeta = new RowMeta();
    }

    data.inputRowMeta = inputRowMeta.clone();
    data.inputFieldNames = data.inputRowMeta.getFieldNames();
View Full Code Here


    this.data = model.getData();
    this.rowList = new LinkedList<Object[]>();
   
    rowSize = data.outputRowMeta.size();
   
    inRow = new RowMeta();
    
  }
View Full Code Here

    idxErrorCount = data.errorRowMeta.indexOfValue(data.stepErrorMeta.getNrErrorsValuename());
    idxErrorField = data.errorRowMeta.indexOfValue(data.stepErrorMeta.getErrorFieldsValuename());
    idxErrorDesc = data.errorRowMeta.indexOfValue(data.stepErrorMeta.getErrorDescriptionsValuename());
    idxErrorCode = data.errorRowMeta.indexOfValue(data.stepErrorMeta.getErrorCodesValuename());
   
    inRow = new RowMeta();

  }
View Full Code Here

    this.rowList = new LinkedList<Object[]>();

    rs = step.findOutputRowSet(srcStepName);
   
    rowSize = data.outputRowMeta.size();
    inRow = new RowMeta();
    
  }
View Full Code Here

  public boolean processRow(StepMetaInterface smi, StepDataInterface sdi) throws KettleException {


        if ( first ) {
            first = false;
            data.outputRowMeta = new RowMeta();
            meta.getFields( data.outputRowMeta, getStepname(), null, null, this, repository, metaStore );
        }

        if(meta.getProcessType() == Process.LIST){
            try {
View Full Code Here

TOP

Related Classes of org.pentaho.di.core.row.RowMeta

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.