Enum Class UtilityAirSystem.AirQualityClass
java.lang.Object
java.lang.Enum<UtilityAirSystem.AirQualityClass>
neqsim.process.equipment.util.UtilityAirSystem.AirQualityClass
- All Implemented Interfaces:
Serializable, Comparable<UtilityAirSystem.AirQualityClass>, Constable
- Enclosing class:
UtilityAirSystem
ISO 8573-1 Air Quality Classes.
- Version:
- 1.0
- Author:
- NeqSim Development Team
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum Constants -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final doubleprivate final doubleprivate final doubleprivate final String -
Constructor Summary
ConstructorsModifierConstructorDescriptionprivateAirQualityClass(double particles, double dewPoint, double oil, String use) -
Method Summary
Modifier and TypeMethodDescriptiondoubleGets max dew point.doubleGets max oil content.doubleGets max particle size.Gets typical use description.Returns the enum constant of this class with the specified name.static UtilityAirSystem.AirQualityClass[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
CLASS_1
Class 1 - Highest quality (breathing air). -
CLASS_2
Class 2 - Very high quality (sensitive instruments). -
CLASS_3
Class 3 - High quality (general instruments). -
CLASS_4
Class 4 - Medium quality (plant air). -
CLASS_5
Class 5 - Standard quality (general use).
-
-
Field Details
-
maxParticleSizeMicron
private final double maxParticleSizeMicron -
maxDewPointC
private final double maxDewPointC -
maxOilMgM3
private final double maxOilMgM3 -
typicalUse
-
-
Constructor Details
-
AirQualityClass
-
-
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
-
getMaxParticleSizeMicron
public double getMaxParticleSizeMicron()Gets max particle size.- Returns:
- particle size in microns
-
getMaxDewPointC
public double getMaxDewPointC()Gets max dew point.- Returns:
- dew point in °C
-
getMaxOilMgM3
public double getMaxOilMgM3()Gets max oil content.- Returns:
- oil content in mg/m³
-
getTypicalUse
-