Enum Class LNGRolloverDetector.RolloverRiskLevel
java.lang.Object
java.lang.Enum<LNGRolloverDetector.RolloverRiskLevel>
neqsim.process.equipment.lng.LNGRolloverDetector.RolloverRiskLevel
- All Implemented Interfaces:
Serializable, Comparable<LNGRolloverDetector.RolloverRiskLevel>, Constable
- Enclosing class:
LNGRolloverDetector
public static enum LNGRolloverDetector.RolloverRiskLevel
extends Enum<LNGRolloverDetector.RolloverRiskLevel>
Risk level enumeration for rollover assessment.
- Version:
- 1.0
- Author:
- NeqSim
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionCritical — rollover imminent or in progress, emergency response needed.High risk — density inversion detected, immediate action required.Low risk — minor stratification detected, monitoring recommended.Medium risk — significant stratification, mixing action recommended.No rollover risk detected. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NONE
No rollover risk detected. -
LOW
Low risk — minor stratification detected, monitoring recommended. -
MEDIUM
Medium risk — significant stratification, mixing action recommended. -
HIGH
High risk — density inversion detected, immediate action required. -
CRITICAL
Critical — rollover imminent or in progress, emergency response needed.
-
-
Constructor Details
-
RolloverRiskLevel
private RolloverRiskLevel()
-
-
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
-