Enum AerisEngine.Units
- java.lang.Object
-
- java.lang.Enum<AerisEngine.Units>
-
- com.aerisweather.aeris.communication.AerisEngine.Units
-
- All Implemented Interfaces:
Serializable
,Comparable<AerisEngine.Units>
- Enclosing class:
- AerisEngine
public static enum AerisEngine.Units extends Enum<AerisEngine.Units>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AerisEngine.Units
valueOf(String name)
Returns the enum constant of this type with the specified name.static AerisEngine.Units[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
STANDARD
public static final AerisEngine.Units STANDARD
-
METRIC
public static final AerisEngine.Units METRIC
-
-
Method Detail
-
values
public static AerisEngine.Units[] 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 (AerisEngine.Units c : AerisEngine.Units.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AerisEngine.Units valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-