Uses of Class
spice.basic.Duration
-
Packages that use Duration Package Description spice.basic -
-
Uses of Duration in spice.basic
Subclasses of Duration in spice.basic Modifier and Type Class Description class
JEDDuration
Class JEDDuration measures time intervals in units of Julian ephemeris days; the time system used for this measurement is TDB.class
SCLKDuration
Class SCLKDuration measures time intervals in units of SCLK ticks, where the ticks are associated with a specified clock.class
TDBDuration
Class TDBDuration measures time intervals in units of TDB seconds.class
TDTDuration
Class TDTDuration measures time intervals in units of TDT seconds.Methods in spice.basic that return Duration Modifier and Type Method Description abstract Duration
Duration. negate()
Negate a Duration.abstract Duration
Duration. scale(double s)
Scale a Duration by the scalar `s'.abstract Duration
Time. sub(Time t2)
Subtract one Time instance from another, yielding a Duration.Methods in spice.basic with parameters of type Duration Modifier and Type Method Description JEDTime
JEDTime. add(Duration d)
Add a Duration to a JEDTime.SCLKTime
SCLKTime. add(Duration d)
Add a Duration to an SCLKTime instance, producing another SCLKTime.TDBTime
TDBTime. add(Duration d)
Add a Duration to a TDBTime.TDTTime
TDTTime. add(Duration d)
Add a Duration to a TDTTime.abstract Time
Time. add(Duration d)
Add a Duration to a Time instance, yielding another Time instance.JEDTime
JEDTime. sub(Duration d)
Subtract a Duration from a JEDTime.SCLKTime
SCLKTime. sub(Duration d)
Subtract a Duration from an SCLKTime instance, producing another SCLKTime.TDBTime
TDBTime. sub(Duration d)
Subtract a Duration from a TDBTime.TDTTime
TDTTime. sub(Duration d)
Subtract a Duration from a TDTTime.abstract Time
Time. sub(Duration d)
Subtract a Duration from a Time instance, yielding another Time instance.Constructors in spice.basic with parameters of type Duration Constructor Description JEDDuration(Duration d, Time startTime)
Create a TDTDuration from any Duration subclass and a start Time.PointingAndAVRecord(Instrument inst, Time t, ReferenceFrame ref, Duration tolerance)
Return a PointingAndAVRecord for a specified instrument or structure at a given time, using a specified lookup tolerance.PointingRecord(Instrument inst, Time t, ReferenceFrame ref, Duration tolerance)
Return a PointingRecord for a specified instrument or structure at a given time, using a specified lookup tolerance.SCLKDuration(SCLK clock, Duration d, Time startTime)
Create a SCLKDuration from an SCLK ID, any Duration subclass and a start time.TDBDuration(Duration d, Time startTime)
Create a TDBDuration from any Duration subclass and a start time.TDTDuration(Duration d, Time startTime)
Create a TDTDuration from any Duration subclass and a start Time.
-