congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
JobHopMeta.setEvaluation
Code IndexAdd Tabnine to your IDE (free)

How to use
setEvaluation
method
in
org.pentaho.di.job.JobHopMeta

Best Java code snippets using org.pentaho.di.job.JobHopMeta.setEvaluation (Showing top 8 results out of 315)

origin: pentaho/pentaho-kettle

public void setEvaluation() {
 if ( !evaluation ) {
  setChanged();
 }
 setEvaluation( true );
}
origin: pentaho/pentaho-kettle

public void setHopEvaluationTrue() {
 currentHop.setConditional();
 currentHop.setEvaluation( true );
 spoon.refreshGraph();
}
origin: pentaho/pentaho-kettle

public void setHopEvaluationFalse() {
 currentHop.setConditional();
 currentHop.setEvaluation( false );
 spoon.refreshGraph();
}
origin: pentaho/pentaho-kettle

public JobHopMeta loadJobHopMeta( ObjectId id_job_hop, List<JobEntryCopy> jobcopies ) throws KettleException {
 JobHopMeta jobHopMeta = new JobHopMeta();
 try {
  RowMetaAndData r = getJobHop( id_job_hop );
  if ( r != null ) {
   long id_jobentry_copy_from = r.getInteger( "ID_JOBENTRY_COPY_FROM", -1L );
   long id_jobentry_copy_to = r.getInteger( "ID_JOBENTRY_COPY_TO", -1L );
   jobHopMeta.setEnabled( r.getBoolean( "ENABLED", true ) );
   jobHopMeta.setEvaluation( r.getBoolean( "EVALUATION", true ) );
   jobHopMeta.setConditional();
   if ( r.getBoolean( "UNCONDITIONAL", !jobHopMeta.getEvaluation() ) ) {
    jobHopMeta.setUnconditional();
   }
   jobHopMeta.setFromEntry( JobMeta.findJobEntryCopy( jobcopies, new LongObjectId( id_jobentry_copy_from ) ) );
   jobHopMeta.setToEntry( JobMeta.findJobEntryCopy( jobcopies, new LongObjectId( id_jobentry_copy_to ) ) );
   return jobHopMeta;
  } else {
   throw new KettleException( "Unable to find job hop with ID : " + id_job_hop );
  }
 } catch ( KettleDatabaseException dbe ) {
  throw new KettleException( BaseMessages.getString( PKG, "JobHopMeta.Exception.UnableToLoadHopInfoRep", ""
   + id_job_hop ), dbe );
 }
}
origin: pentaho/pentaho-kettle

jobHopMeta.setEvaluation( evaluation );
jobHopMeta.setUnconditional( unconditional );
jobMeta.addJobHop( jobHopMeta );
origin: pentaho/pentaho-kettle

JobHopMeta other = jobMeta.findJobHop( hop_candidate.getFromEntry(), jge );
if ( other != null ) {
 hop_candidate.setEvaluation( !other.getEvaluation() );
origin: pentaho/pentaho-kettle

if ( hop.isUnconditional() ) {
 hop.setUnconditional( false );
 hop.setEvaluation( true );
} else {
 if ( hop.getEvaluation() ) {
  hop.setEvaluation( false );
 } else {
  hop.setUnconditional( true );
origin: pentaho/pdi-sdk-plugins

greenHop.setEvaluation( true );
jobMeta.addJobHop( greenHop );
redHop.setEvaluation( false );
jobMeta.addJobHop( redHop );
org.pentaho.di.jobJobHopMetasetEvaluation

Popular methods of JobHopMeta

  • <init>
  • getEvaluation
  • getFromEntry
  • getToEntry
  • isEnabled
  • isUnconditional
  • setEnabled
  • setUnconditional
  • clone
  • setChanged
  • setConditional
  • setFromEntry
  • setConditional,
  • setFromEntry,
  • setToEntry,
  • toString,
  • getDescription,
  • getXML,
  • hasChanged,
  • isSplit,
  • setObjectId

Popular in Java

  • Reading from database using SQL prepared statement
  • getExternalFilesDir (Context)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • scheduleAtFixedRate (Timer)
  • ObjectMapper (com.fasterxml.jackson.databind)
    ObjectMapper provides functionality for reading and writing JSON, either to and from basic POJOs (Pl
  • Container (java.awt)
    A generic Abstract Window Toolkit(AWT) container object is a component that can contain other AWT co
  • IOException (java.io)
    Signals a general, I/O-related error. Error details may be specified when calling the constructor, a
  • ResultSet (java.sql)
    An interface for an object which represents a database table entry, returned as the result of the qu
  • Scanner (java.util)
    A parser that parses a text string of primitive types and strings with the help of regular expressio
  • HttpServlet (javax.servlet.http)
    Provides an abstract class to be subclassed to create an HTTP servlet suitable for a Web site. A sub
  • Top PhpStorm plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now