Package ome.model.enums
Enum UnitsElectricPotential
- java.lang.Object
-
- java.lang.Enum<UnitsElectricPotential>
-
- ome.model.enums.UnitsElectricPotential
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<UnitsElectricPotential>
,UnitEnum
public enum UnitsElectricPotential extends java.lang.Enum<UnitsElectricPotential> implements UnitEnum
-
-
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 UnitsElectricPotential
bySymbol(java.lang.String symbol)
java.lang.String
getSymbol()
static UnitsElectricPotential
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static UnitsElectricPotential[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
YOTTAVOLT
public static final UnitsElectricPotential YOTTAVOLT
-
ZETTAVOLT
public static final UnitsElectricPotential ZETTAVOLT
-
EXAVOLT
public static final UnitsElectricPotential EXAVOLT
-
PETAVOLT
public static final UnitsElectricPotential PETAVOLT
-
TERAVOLT
public static final UnitsElectricPotential TERAVOLT
-
GIGAVOLT
public static final UnitsElectricPotential GIGAVOLT
-
MEGAVOLT
public static final UnitsElectricPotential MEGAVOLT
-
KILOVOLT
public static final UnitsElectricPotential KILOVOLT
-
HECTOVOLT
public static final UnitsElectricPotential HECTOVOLT
-
DECAVOLT
public static final UnitsElectricPotential DECAVOLT
-
VOLT
public static final UnitsElectricPotential VOLT
-
DECIVOLT
public static final UnitsElectricPotential DECIVOLT
-
CENTIVOLT
public static final UnitsElectricPotential CENTIVOLT
-
MILLIVOLT
public static final UnitsElectricPotential MILLIVOLT
-
MICROVOLT
public static final UnitsElectricPotential MICROVOLT
-
NANOVOLT
public static final UnitsElectricPotential NANOVOLT
-
PICOVOLT
public static final UnitsElectricPotential PICOVOLT
-
FEMTOVOLT
public static final UnitsElectricPotential FEMTOVOLT
-
ATTOVOLT
public static final UnitsElectricPotential ATTOVOLT
-
ZEPTOVOLT
public static final UnitsElectricPotential ZEPTOVOLT
-
YOCTOVOLT
public static final UnitsElectricPotential YOCTOVOLT
-
-
Method Detail
-
values
public static UnitsElectricPotential[] 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 (UnitsElectricPotential c : UnitsElectricPotential.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static UnitsElectricPotential 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 UnitsElectricPotential bySymbol(java.lang.String symbol)
-
-