Package ome.model.enums
Enum UnitsPressure
- java.lang.Object
-
- java.lang.Enum<UnitsPressure>
-
- ome.model.enums.UnitsPressure
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<UnitsPressure>
,UnitEnum
public enum UnitsPressure extends java.lang.Enum<UnitsPressure> implements UnitEnum
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ATMOSPHERE
ATTOPASCAL
BAR
CENTIBAR
CENTIPASCAL
DECAPASCAL
DECIBAR
DECIPASCAL
EXAPASCAL
FEMTOPASCAL
GIGAPASCAL
HECTOPASCAL
KILOBAR
KILOPASCAL
MEGABAR
MEGAPASCAL
MICROPASCAL
MILLIBAR
MILLIPASCAL
MILLITORR
MMHG
NANOPASCAL
PASCAL
PETAPASCAL
PICOPASCAL
PSI
TERAPASCAL
TORR
YOCTOPASCAL
YOTTAPASCAL
ZEPTOPASCAL
ZETTAPASCAL
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.String
symbol
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static UnitsPressure
bySymbol(java.lang.String symbol)
java.lang.String
getSymbol()
static UnitsPressure
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static UnitsPressure[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
YOTTAPASCAL
public static final UnitsPressure YOTTAPASCAL
-
ZETTAPASCAL
public static final UnitsPressure ZETTAPASCAL
-
EXAPASCAL
public static final UnitsPressure EXAPASCAL
-
PETAPASCAL
public static final UnitsPressure PETAPASCAL
-
TERAPASCAL
public static final UnitsPressure TERAPASCAL
-
GIGAPASCAL
public static final UnitsPressure GIGAPASCAL
-
MEGAPASCAL
public static final UnitsPressure MEGAPASCAL
-
KILOPASCAL
public static final UnitsPressure KILOPASCAL
-
HECTOPASCAL
public static final UnitsPressure HECTOPASCAL
-
DECAPASCAL
public static final UnitsPressure DECAPASCAL
-
PASCAL
public static final UnitsPressure PASCAL
-
DECIPASCAL
public static final UnitsPressure DECIPASCAL
-
CENTIPASCAL
public static final UnitsPressure CENTIPASCAL
-
MILLIPASCAL
public static final UnitsPressure MILLIPASCAL
-
MICROPASCAL
public static final UnitsPressure MICROPASCAL
-
NANOPASCAL
public static final UnitsPressure NANOPASCAL
-
PICOPASCAL
public static final UnitsPressure PICOPASCAL
-
FEMTOPASCAL
public static final UnitsPressure FEMTOPASCAL
-
ATTOPASCAL
public static final UnitsPressure ATTOPASCAL
-
ZEPTOPASCAL
public static final UnitsPressure ZEPTOPASCAL
-
YOCTOPASCAL
public static final UnitsPressure YOCTOPASCAL
-
BAR
public static final UnitsPressure BAR
-
MEGABAR
public static final UnitsPressure MEGABAR
-
KILOBAR
public static final UnitsPressure KILOBAR
-
DECIBAR
public static final UnitsPressure DECIBAR
-
CENTIBAR
public static final UnitsPressure CENTIBAR
-
MILLIBAR
public static final UnitsPressure MILLIBAR
-
ATMOSPHERE
public static final UnitsPressure ATMOSPHERE
-
PSI
public static final UnitsPressure PSI
-
TORR
public static final UnitsPressure TORR
-
MILLITORR
public static final UnitsPressure MILLITORR
-
MMHG
public static final UnitsPressure MMHG
-
-
Method Detail
-
values
public static UnitsPressure[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (UnitsPressure c : UnitsPressure.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static UnitsPressure valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
bySymbol
public static UnitsPressure bySymbol(java.lang.String symbol)
-
-