Enum Class VFMResult.Quality
- All Implemented Interfaces:
Serializable, Comparable<VFMResult.Quality>, Constable
- Enclosing class:
VFMResult
Quality indicator for VFM result.
- Version:
- 1.0
- Author:
- ESOL
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionResult is extrapolated outside calibration range.High confidence result based on recent calibration.Result should not be used.Low confidence, model may need recalibration.Normal confidence result. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic VFMResult.QualityReturns the enum constant of this class with the specified name.static VFMResult.Quality[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
HIGH
High confidence result based on recent calibration. -
NORMAL
Normal confidence result. -
LOW
Low confidence, model may need recalibration. -
EXTRAPOLATED
Result is extrapolated outside calibration range. -
INVALID
Result should not be used.
-
-
Constructor Details
-
Quality
private Quality()
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-