java.lang.Object
java.lang.Enum<Time>
org.tquadrat.foundation.value.Time
All Implemented Interfaces:
Serializable, Comparable<Time>, Constable, Dimension, DimensionWithLinearConversion

@ClassVersion(sourceVersion="$Id: Time.java 1073 2023-10-01 11:08:51Z tquadrat $") @API(status=STABLE, since="0.1.0") public enum Time extends Enum<Time> implements DimensionWithLinearConversion

The various instances of time periods …

The instance of Time refers to the respective instances of TimeUnit and ChronoUnit wherever possible.

Author:
Thomas Thrien (thomas.thrien@tquadrat.org)
Version:
$Id: Time.java 1073 2023-10-01 11:08:51Z tquadrat $
Since:
0.1.0
UML Diagram
UML Diagram for "org.tquadrat.foundation.value.Time"

UML Diagram for "org.tquadrat.foundation.value.Time"

UML Diagram for "org.tquadrat.foundation.value.Time"
  • Enum Constant Details

    • NANOSECOND

      public static final Time NANOSECOND
      A nanosecond.
    • MICROSECOND

      public static final Time MICROSECOND
      A microsecond.
    • MILLISECOND

      public static final Time MILLISECOND
      A millisecond.
    • SECOND

      public static final Time SECOND
      A second.
    • MINUTE

      public static final Time MINUTE
      A minute.
    • HOUR

      public static final Time HOUR
      An hour.
    • HALF_DAY

      public static final Time HALF_DAY
      Half a day.
    • DAY

      public static final Time DAY
      A day.
    • WEEK

      public static final Time WEEK
      A week (7 days).
    • FORTNIGHT

      public static final Time FORTNIGHT
      A fortnight (2 weeks or 14 days).
    • BANK_MONTH

      public static final Time BANK_MONTH

      A bank month.

      This has a fixed length of exact 30 days.

    • MONTH

      public static final Time MONTH

      A month.

      This is the average month, calculated using the average year with 365.2425 days divided by 12.

    • BANK_YEAR

      public static final Time BANK_YEAR

      A bank year.

      This has a fixed length of exact 360 days.

    • YEAR

      public static final Time YEAR
      A tropical year, according to SI.
      See Also:
    • SIMPLE_YEAR

      public static final Time SIMPLE_YEAR

      A year.

      This is calculated as the average year with 365.2425 days.

      See Also:
    • DECADE

      public static final Time DECADE

      A decade.

      This is calculated as ten average years with 365.2425 days each.

      See Also:
    • CENTURY

      public static final Time CENTURY

      A century.

      This is calculated as one hundred average years with 365.2425 days each.

      See Also:
  • Field Details

  • Constructor Details

    • Time

      private Time(BigDecimal factor, String unitSymbol, TimeUnit timeUnit, TemporalUnit temporalUnit)
      Creates a new Time instance.
      Parameters:
      factor - The factor.
      unitSymbol - The unit symbol.
      timeUnit - The time unit as for the java.util.concurrent package; may be null.
      temporalUnit - The time unit as for the java.time package; may be null.
  • Method Details

    • values

      public static Time[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static Time valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null
    • asTemporalUnit

      Returns this instance of Time as an instance of TemporalUnit.
      Returns:
      this as TemporalUnit.
    • baseUnit

      public final Time baseUnit()

      Returns the base unit.

      E.g. for length, the base unit would be Meter (m), for mass, it is Kilogram (kg), and so on.

      Specified by:
      baseUnit in interface Dimension
      Returns:
      The base unit.
    • factor

      public final BigDecimal factor()

      Returns the factor that is used to convert a value from this unit to the base unit.

      For length, if you have to convert a Centimeter value to Meter, you will divide that by 100 or multiply it with a factor of 0.01.

      For the base unit, the factor is 1.0.

      Specified by:
      factor in interface DimensionWithLinearConversion
      Returns:
      The factor.
      See Also:
    • forUnit

      public static final Time forUnit(ChronoUnit unit) throws IllegalArgumentException
      Returns the Time instance for the given instance of ChronoUnit.
      Parameters:
      unit - The unit.
      Returns:
      The respective instance.
      Throws:
      IllegalArgumentException - The given unit is unknown.
    • forUnit

      public static final Time forUnit(TemporalUnit unit) throws IllegalArgumentException
      Returns the Time instance for the given instance of TemporalUnit.
      Parameters:
      unit - The unit.
      Returns:
      The respective instance.
      Throws:
      IllegalArgumentException - The given unit is unknown.
    • forUnit

      public static final Time forUnit(TimeUnit unit) throws IllegalArgumentException
      Returns the Time instance for the given instance of TimeUnit.
      Parameters:
      unit - The unit.
      Returns:
      The respective instance.
      Throws:
      IllegalArgumentException - The given unit is unknown.
    • forUnit

      public static final Time forUnit(String unitSymbol) throws IllegalArgumentException
      Returns the Time instance for the given unit.
      Parameters:
      unitSymbol - The unit symbol.
      Returns:
      The respective instance.
      Throws:
      IllegalArgumentException - The given unit is unknown.
    • getTemporalUnit

      public final TemporalUnit getTemporalUnit()
      Returns the correspondent TemporalUnit for this instance, as used by the java.time package. Because we define here more units as in that package, the return value may be null.
      Returns:
      The corresponding temporal unit instance, or null if there is no corresponding time unit.
    • getTimeUnit

      public final TimeUnit getTimeUnit()
      Returns the correspondent TimeUnit for this instance, as used by the java.util.concurrent package. Because we define here more units as in that package, the return value may be null.
      Returns:
      The corresponding time unit instance, or null if there is no corresponding time unit.
    • unitSymbol

      public final String unitSymbol()

      Returns the unit symbol for the dimension as a single line string.

      For a length, this would be "m", for a speed "km/h", and for an acceleration, it could be "m/(s^2)".

      Specified by:
      unitSymbol in interface Dimension
      Returns:
      The unit.