Package ome.model.enums
Enum UnitsFrequency
- java.lang.Object
-
- java.lang.Enum<UnitsFrequency>
-
- ome.model.enums.UnitsFrequency
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<UnitsFrequency>
,UnitEnum
public enum UnitsFrequency extends java.lang.Enum<UnitsFrequency> implements UnitEnum
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ATTOHERTZ
CENTIHERTZ
DECAHERTZ
DECIHERTZ
EXAHERTZ
FEMTOHERTZ
GIGAHERTZ
HECTOHERTZ
HERTZ
KILOHERTZ
MEGAHERTZ
MICROHERTZ
MILLIHERTZ
NANOHERTZ
PETAHERTZ
PICOHERTZ
TERAHERTZ
YOCTOHERTZ
YOTTAHERTZ
ZEPTOHERTZ
ZETTAHERTZ
-
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 UnitsFrequency
bySymbol(java.lang.String symbol)
java.lang.String
getSymbol()
static UnitsFrequency
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static UnitsFrequency[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
YOTTAHERTZ
public static final UnitsFrequency YOTTAHERTZ
-
ZETTAHERTZ
public static final UnitsFrequency ZETTAHERTZ
-
EXAHERTZ
public static final UnitsFrequency EXAHERTZ
-
PETAHERTZ
public static final UnitsFrequency PETAHERTZ
-
TERAHERTZ
public static final UnitsFrequency TERAHERTZ
-
GIGAHERTZ
public static final UnitsFrequency GIGAHERTZ
-
MEGAHERTZ
public static final UnitsFrequency MEGAHERTZ
-
KILOHERTZ
public static final UnitsFrequency KILOHERTZ
-
HECTOHERTZ
public static final UnitsFrequency HECTOHERTZ
-
DECAHERTZ
public static final UnitsFrequency DECAHERTZ
-
HERTZ
public static final UnitsFrequency HERTZ
-
DECIHERTZ
public static final UnitsFrequency DECIHERTZ
-
CENTIHERTZ
public static final UnitsFrequency CENTIHERTZ
-
MILLIHERTZ
public static final UnitsFrequency MILLIHERTZ
-
MICROHERTZ
public static final UnitsFrequency MICROHERTZ
-
NANOHERTZ
public static final UnitsFrequency NANOHERTZ
-
PICOHERTZ
public static final UnitsFrequency PICOHERTZ
-
FEMTOHERTZ
public static final UnitsFrequency FEMTOHERTZ
-
ATTOHERTZ
public static final UnitsFrequency ATTOHERTZ
-
ZEPTOHERTZ
public static final UnitsFrequency ZEPTOHERTZ
-
YOCTOHERTZ
public static final UnitsFrequency YOCTOHERTZ
-
-
Method Detail
-
values
public static UnitsFrequency[] 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 (UnitsFrequency c : UnitsFrequency.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static UnitsFrequency 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 UnitsFrequency bySymbol(java.lang.String symbol)
-
-