Enum Class ConformityResult.Status
java.lang.Object
java.lang.Enum<ConformityResult.Status>
neqsim.process.mechanicaldesign.separator.conformity.ConformityResult.Status
- All Implemented Interfaces:
Serializable, Comparable<ConformityResult.Status>, Constable
- Enclosing class:
ConformityResult
Status of a conformity check.
- Version:
- 1.0
- Author:
- NeqSim Development Team
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionActual value exceeds the limit.Check could not be evaluated (missing data or not applicable).Actual value is within the acceptable range.Actual value is close to the limit (within warning threshold). -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic ConformityResult.StatusReturns the enum constant of this class with the specified name.static ConformityResult.Status[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
PASS
Actual value is within the acceptable range. -
WARNING
Actual value is close to the limit (within warning threshold). -
FAIL
Actual value exceeds the limit. -
NOT_APPLICABLE
Check could not be evaluated (missing data or not applicable).
-
-
Constructor Details
-
Status
private Status()
-
-
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
-