Package org.smallmind.scribe.pen
Enum TimestampQuantifier
- java.lang.Object
-
- java.lang.Enum<TimestampQuantifier>
-
- org.smallmind.scribe.pen.TimestampQuantifier
-
- All Implemented Interfaces:
Serializable,Comparable<TimestampQuantifier>
public enum TimestampQuantifier extends Enum<TimestampQuantifier>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description HALF_DAYTOP_OF_DAYTOP_OF_HOURTOP_OF_MINUTETOP_OF_MONTHTOP_OF_WEEK
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TimestampQuantifiervalueOf(String name)Returns the enum constant of this type with the specified name.static TimestampQuantifier[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TOP_OF_MINUTE
public static final TimestampQuantifier TOP_OF_MINUTE
-
TOP_OF_HOUR
public static final TimestampQuantifier TOP_OF_HOUR
-
HALF_DAY
public static final TimestampQuantifier HALF_DAY
-
TOP_OF_DAY
public static final TimestampQuantifier TOP_OF_DAY
-
TOP_OF_WEEK
public static final TimestampQuantifier TOP_OF_WEEK
-
TOP_OF_MONTH
public static final TimestampQuantifier TOP_OF_MONTH
-
-
Method Detail
-
values
public static TimestampQuantifier[] 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 (TimestampQuantifier c : TimestampQuantifier.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TimestampQuantifier 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
-
-