Package org.drip.regression.core
Class RegressionRunOutput
java.lang.Object
org.drip.regression.core.RegressionRunOutput
public class RegressionRunOutput
extends java.lang.Object
RegressionRunOutput contains the output of a single regression activity. It holds the following:
Another function displays the contents of this RegressionRunOutput instance.
- The execution time
- The Success/failure status of the run
- The regression scenario that was executed
- The Completion time for the regression module
- The Regression Run Detail for the regression run
Another function displays the contents of this RegressionRunOutput instance.
- Module = Computational Core Module
- Library = Computation Support
- Project = Regression Engine Core and the Unit Regressors
- Package = Regression Engine Core - Unit Regressors
- Author:
- Lakshmi Krishnamurthy
-
Field Summary
Fields Modifier and Type Field Description boolean_bStatusCompletion Status for the Regression Modulejava.util.Date_dtCompletionCompletion Time for the Regression Modulelong_lExecTimeExecution time for the Regression Modulejava.lang.String_strRegressionScenarioNameCompletion Status for the Regression Module -
Constructor Summary
Constructors Constructor Description RegressionRunOutput(java.lang.String strRegressionScenarioName)Regression Run Output Constructor -
Method Summary
Modifier and Type Method Description java.lang.StringdisplayString(boolean bDetailed)Print the contents of the regression outputRegressionRunDetailgetRegressionDetail()Retrieve the regression details objectbooleansetTerminationStatus(boolean bSuccess)Set the termination status for the regression outputMethods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Field Details
-
_lExecTime
public long _lExecTimeExecution time for the Regression Module -
_bStatus
public boolean _bStatusCompletion Status for the Regression Module -
_strRegressionScenarioName
public java.lang.String _strRegressionScenarioNameCompletion Status for the Regression Module -
_dtCompletion
public java.util.Date _dtCompletionCompletion Time for the Regression Module
-
-
Constructor Details
-
RegressionRunOutput
public RegressionRunOutput(java.lang.String strRegressionScenarioName) throws java.lang.ExceptionRegression Run Output Constructor- Parameters:
strRegressionScenarioName- Regression Scenario Name- Throws:
java.lang.Exception- Thrown if the Inputs are Invalid
-
-
Method Details
-
setTerminationStatus
public boolean setTerminationStatus(boolean bSuccess)Set the termination status for the regression output- Parameters:
bSuccess- TRUE - Regression Run succeeded- Returns:
- TRUE - Termination status successfully set
-
getRegressionDetail
Retrieve the regression details object- Returns:
- The regression details object
-
displayString
public java.lang.String displayString(boolean bDetailed)Print the contents of the regression output- Parameters:
bDetailed- Display detailed output- Returns:
- String representing the Regression output
-