Package org.silverpeas.core.date
Enum TimeUnit
- java.lang.Object
-
- java.lang.Enum<TimeUnit>
-
- org.silverpeas.core.date.TimeUnit
-
- All Implemented Interfaces:
Serializable
,Comparable<TimeUnit>
,TemporalUnit
public enum TimeUnit extends Enum<TimeUnit> implements TemporalUnit
An enumeration of time units to be used to express a well known defined unit in the timeline. This class was defined before Java Time API inclusion. Now this class defines a restrictive set ofChronoUnit
values. The difference withChronoUnit
is that only time units in use in Silverpeas are defined so that we are ensured the time units are correctly supported by the processes in Silverpeas that handle date time values and hence don't cause any unexpected and unwanted behaviors.- Author:
- mmoquillon
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DAY
Time unit representing one day.HOUR
Time unit representing one hour.MILLISECOND
Time unit representing one millisecond.MINUTE
Time unit representing one minute.MONTH
Time unit representing one month.SECOND
Time unit representing one second.WEEK
Time unit representing one week.YEAR
Time unit representing one year.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description <R extends Temporal>
RaddTo(R temporal, long amount)
long
between(Temporal temporal1Inclusive, Temporal temporal2Exclusive)
Duration
getDuration()
boolean
isDateBased()
boolean
isDurationEstimated()
boolean
isTimeBased()
ChronoUnit
toChronoUnit()
Converts this time unit into aChronoUnit
value.static TimeUnit
valueOf(String name)
Returns the enum constant of this type with the specified name.static TimeUnit[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.-
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Methods inherited from interface java.time.temporal.TemporalUnit
isSupportedBy, toString
-
-
-
-
Enum Constant Detail
-
MILLISECOND
public static final TimeUnit MILLISECOND
Time unit representing one millisecond.
-
SECOND
public static final TimeUnit SECOND
Time unit representing one second.
-
MINUTE
public static final TimeUnit MINUTE
Time unit representing one minute.
-
HOUR
public static final TimeUnit HOUR
Time unit representing one hour.
-
DAY
public static final TimeUnit DAY
Time unit representing one day.
-
WEEK
public static final TimeUnit WEEK
Time unit representing one week.
-
MONTH
public static final TimeUnit MONTH
Time unit representing one month.
-
YEAR
public static final TimeUnit YEAR
Time unit representing one year.
-
-
Method Detail
-
values
public static TimeUnit[] 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 (TimeUnit c : TimeUnit.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TimeUnit 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
-
toChronoUnit
public ChronoUnit toChronoUnit()
Converts this time unit into aChronoUnit
value.- Returns:
- a
ChronoUnit
instance matching this time unit.
-
getDuration
public Duration getDuration()
- Specified by:
getDuration
in interfaceTemporalUnit
-
isDurationEstimated
public boolean isDurationEstimated()
- Specified by:
isDurationEstimated
in interfaceTemporalUnit
-
isDateBased
public boolean isDateBased()
- Specified by:
isDateBased
in interfaceTemporalUnit
-
isTimeBased
public boolean isTimeBased()
- Specified by:
isTimeBased
in interfaceTemporalUnit
-
addTo
public <R extends Temporal> R addTo(R temporal, long amount)
- Specified by:
addTo
in interfaceTemporalUnit
-
between
public long between(Temporal temporal1Inclusive, Temporal temporal2Exclusive)
- Specified by:
between
in interfaceTemporalUnit
-
-