Enum Class ArtificialLiftScreener.LiftMethod
java.lang.Object
java.lang.Enum<ArtificialLiftScreener.LiftMethod>
neqsim.process.fielddevelopment.screening.ArtificialLiftScreener.LiftMethod
- All Implemented Interfaces:
Serializable, Comparable<ArtificialLiftScreener.LiftMethod>, Constable
- Enclosing class:
ArtificialLiftScreener
public static enum ArtificialLiftScreener.LiftMethod
extends Enum<ArtificialLiftScreener.LiftMethod>
Artificial lift method types.
- Version:
- 1.0
- Author:
- ESOL
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum Constants -
Field Summary
Fields -
Constructor Summary
ConstructorsModifierConstructorDescriptionprivateLiftMethod(String displayName, double typicalCapex, double typicalOpex) -
Method Summary
Modifier and TypeMethodDescriptionGets display name.doubleGets typical CAPEX.doubleGets typical OPEX.Returns the enum constant of this class with the specified name.static ArtificialLiftScreener.LiftMethod[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NATURAL_FLOW
Natural flow - no artificial lift. -
GAS_LIFT
Continuous gas lift. -
ESP
Electrical submersible pump. -
ROD_PUMP
Sucker rod pump. -
PCP
Progressive cavity pump. -
JET_PUMP
Hydraulic jet pump.
-
-
Field Details
-
displayName
-
typicalCapex
private final double typicalCapex -
typicalOpex
private final double typicalOpex
-
-
Constructor Details
-
LiftMethod
-
-
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
-
getTypicalCapex
public double getTypicalCapex()Gets typical CAPEX.- Returns:
- CAPEX in USD
-
getTypicalOpex
public double getTypicalOpex()Gets typical OPEX.- Returns:
- OPEX in USD/day
-