Enum Class ProductionImpactResult.RecommendedAction
java.lang.Object
java.lang.Enum<ProductionImpactResult.RecommendedAction>
neqsim.process.util.optimizer.ProductionImpactResult.RecommendedAction
- All Implemented Interfaces:
Serializable, Comparable<ProductionImpactResult.RecommendedAction>, Constable
- Enclosing class:
ProductionImpactResult
public static enum ProductionImpactResult.RecommendedAction
extends Enum<ProductionImpactResult.RecommendedAction>
Recommended operating mode after equipment failure.
- 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 ConstantDescriptionReroute flow to bypass failed equipment.Continue at full rate - failure has minimal impact.Full plant shutdown required.Shutdown affected train/section only.Reduce throughput to match new constraints.Switch to standby/spare equipment. -
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
-
CONTINUE_NORMAL
Continue at full rate - failure has minimal impact. -
REDUCE_THROUGHPUT
Reduce throughput to match new constraints. -
PARTIAL_SHUTDOWN
Shutdown affected train/section only. -
FULL_SHUTDOWN
Full plant shutdown required. -
BYPASS_EQUIPMENT
Reroute flow to bypass failed equipment. -
USE_STANDBY
Switch to standby/spare equipment.
-
-
Constructor Details
-
RecommendedAction
private RecommendedAction()
-
-
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
-