Enum TimeResultParameter.Unit
java.lang.Object
java.lang.Enum<TimeResultParameter.Unit>
org.shredzone.commons.suncalc.param.TimeResultParameter.Unit
- All Implemented Interfaces:
Serializable
,Comparable<TimeResultParameter.Unit>
,java.lang.constant.Constable
- Enclosing interface:
- TimeResultParameter<T>
Available chrono units.
- Since:
- 2.3
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic TimeResultParameter.Unit
Returns the enum constant of this type with the specified name.static TimeResultParameter.Unit[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
SECONDS
Round to the nearest full second. Note that due to the simplified formulas used in suncalc, the result is never accurate to the second. -
MINUTES
Round to the nearest full minute. This is the default. -
HOURS
Round to the nearest full hour. -
DAYS
Round down to the full day. Note that, unlike the otherTimeResultParameter.Unit
, the result is always rounded down to full days.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-