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_RESIDUALS
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.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.INCOMPATIBLE_OPTIMISER
The optimisation statistic is not suported by the selected optimiser.INSUFFICIENT_DATA_IN_PROBLEM_STATEMENT
Some data is missing in the problem statement.MAX_ITERATIONS_REACHED
MISSING_BUFFER
The buffer has not been created.MISSING_DIFFERENCE_SCHEME
TheDifferenceScheme
for solving theProblem
has not been specified by the user.MISSING_HEATING_CURVE
A heating curve has not been set up for theDifferenceScheme
.MISSING_OPTIMISER
There is no information about the selected optimiser.MISSING_PROBLEM_STATEMENT
TheProblem
has not been specified by the user.NONE
PARAMETER_VALUES_NOT_SENSIBLE
SIGNIFICANT_CORRELATION_BETWEEN_PARAMETERS
SOLVER_ERROR
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
toString()
static Details
valueOf(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
TheProblem
has not been specified by the user.
-
MISSING_DIFFERENCE_SCHEME
public static final Details MISSING_DIFFERENCE_SCHEME
TheDifferenceScheme
for solving theProblem
has 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
-
-