Enum Class IncrementalZoneAnalysis.PhaseRegime
java.lang.Object
java.lang.Enum<IncrementalZoneAnalysis.PhaseRegime>
neqsim.process.mechanicaldesign.heatexchanger.IncrementalZoneAnalysis.PhaseRegime
- All Implemented Interfaces:
Serializable, Comparable<IncrementalZoneAnalysis.PhaseRegime>, Constable
- Enclosing class:
IncrementalZoneAnalysis
public static enum IncrementalZoneAnalysis.PhaseRegime
extends Enum<IncrementalZoneAnalysis.PhaseRegime>
Phase regime within a zone.
- 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 ConstantDescriptionTwo-phase condensing (quality decreasing).Two-phase evaporating (quality increasing).Single-phase liquid (subcooled).Two-phase mixed (quality near constant).Single-phase vapor (superheated). -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static IncrementalZoneAnalysis.PhaseRegime[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
VAPOR
Single-phase vapor (superheated). -
LIQUID
Single-phase liquid (subcooled). -
CONDENSING
Two-phase condensing (quality decreasing). -
EVAPORATING
Two-phase evaporating (quality increasing). -
TWO_PHASE
Two-phase mixed (quality near constant).
-
-
Constructor Details
-
PhaseRegime
private PhaseRegime()
-
-
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
-