Class Hours

All Implemented Interfaces:
Duration, Serializable

public class Hours extends ConcreteDuration implements Serializable
See Also:
  • Constructor Details

    • Hours

      public Hours()
      Default constructor
    • Hours

      public Hours(double hours)
      Construct object
      Parameters:
      hours - number of hours
  • Method Details

    • asNanoSecs

      public static long asNanoSecs(double hours)
      Parameters:
      hours - The time in hours to convert.
      Returns:
      hours expressed in nanosecs
    • asSecs

      public static double asSecs(double hours)
      Parameters:
      hours - The time in hours to convert.
      Returns:
      hours expressed in secs
    • asMins

      public static double asMins(double hours)
      Parameters:
      hours - The time in hours to convert
      Returns:
      hours expressed in mins
    • asRevs

      public static double asRevs(double hours)
      Parameters:
      hours - Time in hours to convert.
      Returns:
      hours expressed in revs
    • asDays

      public static double asDays(double hours)
      Parameters:
      hours - Time in hours to convert.
      Returns:
      hours expressed in days
    • asJulianYears

      public static double asJulianYears(double hours)
      Parameters:
      hours - Time in hours to convert.
      Returns:
      hours expressed in JulianYears
    • set

      public Duration set(Duration d)
      Description copied from interface: Duration
      Set this duration to a new given one
      Specified by:
      set in interface Duration
      Parameters:
      d - duration to set this one to
      Returns:
      updated object
      See Also:
    • asNanoSecs

      public long asNanoSecs()
      Specified by:
      asNanoSecs in interface Duration
      Returns:
      duration expressed in ns
      See Also:
    • asSecs

      public double asSecs()
      Specified by:
      asSecs in interface Duration
      Returns:
      duration expressed in s
      See Also:
    • asMins

      public double asMins()
      Specified by:
      asMins in interface Duration
      Returns:
      duration expressed in min
      See Also:
    • asHours

      public double asHours()
      Specified by:
      asHours in interface Duration
      Returns:
      duration expressed in h
      See Also:
    • asRevs

      public double asRevs()
      Specified by:
      asRevs in interface Duration
      Returns:
      duration expressed in revolutions
      See Also:
    • asDays

      public double asDays()
      Specified by:
      asDays in interface Duration
      Returns:
      number of ns expressed days
      See Also:
    • asJulianYears

      public double asJulianYears()
      Specified by:
      asJulianYears in interface Duration
      Returns:
      duration expressed in Julian years
      See Also:
    • add

      public Duration add(Duration d)
      Description copied from interface: Duration
      Add a duration to this one
      Specified by:
      add in interface Duration
      Parameters:
      d - amount of time to add
      Returns:
      updated object
      See Also:
    • sub

      public Duration sub(Duration d)
      Description copied from interface: Duration
      Subtract a duration from this one
      Specified by:
      sub in interface Duration
      Parameters:
      d - amount of time to subtract
      Returns:
      updated object
      See Also:
    • clone

      public Hours clone()
      Overrides:
      clone in class Object
      See Also: