Enum TimeUnitType
- java.lang.Object
-
- java.lang.Enum<TimeUnitType>
-
- ninja.codingsolutions.solaredgeapiclient.models.TimeUnitType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<TimeUnitType>
public enum TimeUnitType extends java.lang.Enum<TimeUnitType>
Enum indicating the time unit type associated with a value
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TimeUnitTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static TimeUnitType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DAY
public static final TimeUnitType DAY
Days
-
WEEK
public static final TimeUnitType WEEK
Weeks
-
MONTH
public static final TimeUnitType MONTH
Months
-
-
Method Detail
-
values
public static TimeUnitType[] 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 (TimeUnitType c : TimeUnitType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TimeUnitType 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
-
-