Enum Class PredictionResult.ConstraintViolation.Severity
java.lang.Object
java.lang.Enum<PredictionResult.ConstraintViolation.Severity>
neqsim.process.advisory.PredictionResult.ConstraintViolation.Severity
- All Implemented Interfaces:
Serializable, Comparable<PredictionResult.ConstraintViolation.Severity>, Constable
- Enclosing class:
PredictionResult.ConstraintViolation
public static enum PredictionResult.ConstraintViolation.Severity
extends Enum<PredictionResult.ConstraintViolation.Severity>
Severity levels for violations.
- Version:
- 1.0
- Author:
- ESOL
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum Constants -
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
-
LOW
Informational - minor deviation expected. -
MEDIUM
Warning - significant deviation, attention needed. -
HIGH
Critical - safety or equipment limits may be exceeded. -
CRITICAL
Emergency - immediate action required.
-
-
Constructor Details
-
Severity
private Severity()
-
-
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
-