Enum Class WellScheduler.WellStatus
java.lang.Object
java.lang.Enum<WellScheduler.WellStatus>
neqsim.process.util.fielddevelopment.WellScheduler.WellStatus
- All Implemented Interfaces:
Serializable, Comparable<WellScheduler.WellStatus>, Constable
- Enclosing class:
WellScheduler
Well operational status.
Defines the possible states a well can be in during field operations. The status affects both production contribution and intervention scheduling.
- Version:
- 1.0
- Author:
- ESOL
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionWell is being drilled (not yet completed).Well is permanently plugged and abandoned.Well is producing at its current potential.Well is temporarily shut in (no production).Operations delayed waiting for weather window.Well is undergoing intervention/workover. -
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionGets the display name for reports.booleanChecks if the well produces in this status.static WellScheduler.WellStatusReturns the enum constant of this class with the specified name.static WellScheduler.WellStatus[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
PRODUCING
Well is producing at its current potential. -
SHUT_IN
Well is temporarily shut in (no production). -
WORKOVER
Well is undergoing intervention/workover. -
WAITING_ON_WEATHER
Operations delayed waiting for weather window. -
DRILLING
Well is being drilled (not yet completed). -
PLUGGED
Well is permanently plugged and abandoned.
-
-
Field Details
-
displayName
-
isProducing
private final boolean isProducing
-
-
Constructor Details
-
WellStatus
-
-
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
-
getDisplayName
Gets the display name for reports.- Returns:
- human-readable status name
-
isProducing
public boolean isProducing()Checks if the well produces in this status.- Returns:
- true if well is producing
-