Enum Class DegradedOperationOptimizer.OperatingMode
java.lang.Object
java.lang.Enum<DegradedOperationOptimizer.OperatingMode>
neqsim.process.util.optimizer.DegradedOperationOptimizer.OperatingMode
- All Implemented Interfaces:
Serializable, Comparable<DegradedOperationOptimizer.OperatingMode>, Constable
- Enclosing class:
DegradedOperationOptimizer
public static enum DegradedOperationOptimizer.OperatingMode
extends Enum<DegradedOperationOptimizer.OperatingMode>
Operating mode options during degraded operation.
- 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 ConstantDescriptionBypass failed equipment and continue.Full shutdown of the plant.Normal operation - full capacity.Partial shutdown - some trains/sections offline.Reduced throughput to match 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
-
NORMAL
Normal operation - full capacity. -
REDUCED_CAPACITY
Reduced throughput to match constraints. -
PARTIAL_SHUTDOWN
Partial shutdown - some trains/sections offline. -
FULL_SHUTDOWN
Full shutdown of the plant. -
BYPASS_MODE
Bypass failed equipment and continue. -
STANDBY_MODE
Switch to standby/spare equipment.
-
-
Constructor Details
-
OperatingMode
private OperatingMode()
-
-
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
-