Package pulse.tasks.logs
Enum Details
- java.lang.Object
-
- java.lang.Enum<Details>
-
- pulse.tasks.logs.Details
-
- All Implemented Interfaces:
Serializable,Comparable<Details>
public enum Details extends Enum<Details>
An enum which lists different possible problems wit theSearchTask.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ABNORMAL_DISTRIBUTION_OF_RESIDUALSBETTER_CALCULATION_RESULTS_THAN_PREVIOUSLY_OBTAINEDIndicates that the result table had been updated, as the current model selection criterion showed better result than already present.CALCULATION_RESULTS_WORSE_THAN_PREVIOUSLY_OBTAINEDIndicates that the result table had not been updated, as the selected model produced results worse than expected by the model selection criterion.INCOMPATIBLE_OPTIMISERThe optimisation statistic is not suported by the selected optimiser.INSUFFICIENT_DATA_IN_PROBLEM_STATEMENTSome data is missing in the problem statement.MAX_ITERATIONS_REACHEDMISSING_BUFFERThe buffer has not been created.MISSING_DIFFERENCE_SCHEMETheDifferenceSchemefor solving theProblemhas not been specified by the user.MISSING_HEATING_CURVEA heating curve has not been set up for theDifferenceScheme.MISSING_OPTIMISERThere is no information about the selected optimiser.MISSING_PROBLEM_STATEMENTTheProblemhas not been specified by the user.NONEPARAMETER_VALUES_NOT_SENSIBLESIGNIFICANT_CORRELATION_BETWEEN_PARAMETERSSOLVER_ERROR
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringtoString()static DetailsvalueOf(String name)Returns the enum constant of this type with the specified name.static Details[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final Details NONE
-
MISSING_PROBLEM_STATEMENT
public static final Details MISSING_PROBLEM_STATEMENT
TheProblemhas not been specified by the user.
-
MISSING_DIFFERENCE_SCHEME
public static final Details MISSING_DIFFERENCE_SCHEME
TheDifferenceSchemefor solving theProblemhas not been specified by the user.
-
MISSING_HEATING_CURVE
public static final Details MISSING_HEATING_CURVE
A heating curve has not been set up for theDifferenceScheme.
-
MISSING_OPTIMISER
public static final Details MISSING_OPTIMISER
There is no information about the selected optimiser.
-
MISSING_BUFFER
public static final Details MISSING_BUFFER
The buffer has not been created.
-
INCOMPATIBLE_OPTIMISER
public static final Details INCOMPATIBLE_OPTIMISER
The optimisation statistic is not suported by the selected optimiser.
-
INSUFFICIENT_DATA_IN_PROBLEM_STATEMENT
public static final Details INSUFFICIENT_DATA_IN_PROBLEM_STATEMENT
Some data is missing in the problem statement. Probably, the interpolation datasets have been set up incorrectly or the specific heat and density data have not been loaded.
-
SIGNIFICANT_CORRELATION_BETWEEN_PARAMETERS
public static final Details SIGNIFICANT_CORRELATION_BETWEEN_PARAMETERS
-
PARAMETER_VALUES_NOT_SENSIBLE
public static final Details PARAMETER_VALUES_NOT_SENSIBLE
-
MAX_ITERATIONS_REACHED
public static final Details MAX_ITERATIONS_REACHED
-
ABNORMAL_DISTRIBUTION_OF_RESIDUALS
public static final Details ABNORMAL_DISTRIBUTION_OF_RESIDUALS
-
CALCULATION_RESULTS_WORSE_THAN_PREVIOUSLY_OBTAINED
public static final Details CALCULATION_RESULTS_WORSE_THAN_PREVIOUSLY_OBTAINED
Indicates that the result table had not been updated, as the selected model produced results worse than expected by the model selection criterion.
-
BETTER_CALCULATION_RESULTS_THAN_PREVIOUSLY_OBTAINED
public static final Details BETTER_CALCULATION_RESULTS_THAN_PREVIOUSLY_OBTAINED
Indicates that the result table had been updated, as the current model selection criterion showed better result than already present.
-
SOLVER_ERROR
public static final Details SOLVER_ERROR
-
-
Method Detail
-
values
public static Details[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Details c : Details.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Details valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-