
prerna.sablecc2.pipeline.ConstantPipelineOperation Maven / Gradle / Ivy
The newest version!
package prerna.sablecc2.pipeline;
import java.util.Map;
public class ConstantPipelineOperation extends PipelineOperation {
Map scalarMap = null;
/**
* Constructor
* @param opName The name of the reactor for the operation
* @param opString Primarily need this for debugging
*/
public ConstantPipelineOperation(String opName, String opString) {
super(opName, opString);
this.rowInputs = null;
this.nounInputs = null;
}
public void setScalarMap(Map scalarMap) {
this.scalarMap = scalarMap;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy