Package ome.model.enums
Enum UnitsPower
- java.lang.Object
-
- java.lang.Enum<UnitsPower>
-
- ome.model.enums.UnitsPower
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<UnitsPower>
,UnitEnum
public enum UnitsPower extends java.lang.Enum<UnitsPower> 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 UnitsPower
bySymbol(java.lang.String symbol)
java.lang.String
getSymbol()
static UnitsPower
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static UnitsPower[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
YOTTAWATT
public static final UnitsPower YOTTAWATT
-
ZETTAWATT
public static final UnitsPower ZETTAWATT
-
EXAWATT
public static final UnitsPower EXAWATT
-
PETAWATT
public static final UnitsPower PETAWATT
-
TERAWATT
public static final UnitsPower TERAWATT
-
GIGAWATT
public static final UnitsPower GIGAWATT
-
MEGAWATT
public static final UnitsPower MEGAWATT
-
KILOWATT
public static final UnitsPower KILOWATT
-
HECTOWATT
public static final UnitsPower HECTOWATT
-
DECAWATT
public static final UnitsPower DECAWATT
-
WATT
public static final UnitsPower WATT
-
DECIWATT
public static final UnitsPower DECIWATT
-
CENTIWATT
public static final UnitsPower CENTIWATT
-
MILLIWATT
public static final UnitsPower MILLIWATT
-
MICROWATT
public static final UnitsPower MICROWATT
-
NANOWATT
public static final UnitsPower NANOWATT
-
PICOWATT
public static final UnitsPower PICOWATT
-
FEMTOWATT
public static final UnitsPower FEMTOWATT
-
ATTOWATT
public static final UnitsPower ATTOWATT
-
ZEPTOWATT
public static final UnitsPower ZEPTOWATT
-
YOCTOWATT
public static final UnitsPower YOCTOWATT
-
-
Method Detail
-
values
public static UnitsPower[] 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 (UnitsPower c : UnitsPower.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static UnitsPower 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 UnitsPower bySymbol(java.lang.String symbol)
-
-