Enum DateTimeUnit
- java.lang.Object
-
- java.lang.Enum<DateTimeUnit>
-
- org.uitnet.testing.smartfwk.common.DateTimeUnit
-
- All Implemented Interfaces:
Serializable,Comparable<DateTimeUnit>
public enum DateTimeUnit extends Enum<DateTimeUnit>
- Author:
- Madhav Krishna
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DateTimeUnitvalueOf(String name)Returns the enum constant of this type with the specified name.static DateTimeUnitvalueOf2(String unitAsStr)static DateTimeUnit[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
years
public static final DateTimeUnit years
-
months
public static final DateTimeUnit months
-
weeks
public static final DateTimeUnit weeks
-
days
public static final DateTimeUnit days
-
hours
public static final DateTimeUnit hours
-
minutes
public static final DateTimeUnit minutes
-
seconds
public static final DateTimeUnit seconds
-
milliseconds
public static final DateTimeUnit milliseconds
-
-
Method Detail
-
values
public static DateTimeUnit[] 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 (DateTimeUnit c : DateTimeUnit.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DateTimeUnit 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
-
valueOf2
public static DateTimeUnit valueOf2(String unitAsStr)
-
-