Package omero.model.enums
Enum UnitsPower
- java.lang.Object
-
- java.lang.Enum<UnitsPower>
-
- omero.model.enums.UnitsPower
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<UnitsPower>
public enum UnitsPower extends java.lang.Enum<UnitsPower> implements java.io.Serializable
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static UnitsPower
__read(IceInternal.BasicStream __is)
void
__write(IceInternal.BasicStream __os)
static void
__write(IceInternal.BasicStream __os, UnitsPower __v)
int
value()
static UnitsPower
valueOf(int __v)
Returns the enum constant of this type with the specified name.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
-
value
public int value()
-
valueOf
public static UnitsPower valueOf(int __v)
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:
__v
- 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
-
__write
public void __write(IceInternal.BasicStream __os)
-
__write
public static void __write(IceInternal.BasicStream __os, UnitsPower __v)
-
__read
public static UnitsPower __read(IceInternal.BasicStream __is)
-
-