Record Class SchedulingInstant
java.lang.Object
java.lang.Record
gov.nasa.jpl.aerie.merlin.driver.engine.SchedulingInstant
- All Implemented Interfaces:
Comparable<SchedulingInstant>
public record SchedulingInstant(gov.nasa.jpl.aerie.merlin.protocol.types.Duration offsetFromStart, gov.nasa.jpl.aerie.merlin.driver.engine.SubInstant priority)
extends Record
implements Comparable<SchedulingInstant>
-
Constructor Summary
ConstructorDescriptionSchedulingInstant
(gov.nasa.jpl.aerie.merlin.protocol.types.Duration offsetFromStart, gov.nasa.jpl.aerie.merlin.driver.engine.SubInstant priority) Creates an instance of aSchedulingInstant
record class. -
Method Summary
Modifier and TypeMethodDescriptionint
final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.gov.nasa.jpl.aerie.merlin.protocol.types.Duration
Returns the value of theoffsetFromStart
record component.gov.nasa.jpl.aerie.merlin.driver.engine.SubInstant
priority()
Returns the value of thepriority
record component.gov.nasa.jpl.aerie.merlin.protocol.types.Duration
project()
final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
SchedulingInstant
public SchedulingInstant(gov.nasa.jpl.aerie.merlin.protocol.types.Duration offsetFromStart, gov.nasa.jpl.aerie.merlin.driver.engine.SubInstant priority) Creates an instance of aSchedulingInstant
record class.- Parameters:
offsetFromStart
- the value for theoffsetFromStart
record componentpriority
- the value for thepriority
record component
-
-
Method Details
-
project
public gov.nasa.jpl.aerie.merlin.protocol.types.Duration project() -
compareTo
- Specified by:
compareTo
in interfaceComparable<SchedulingInstant>
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object)
. -
offsetFromStart
public gov.nasa.jpl.aerie.merlin.protocol.types.Duration offsetFromStart()Returns the value of theoffsetFromStart
record component.- Returns:
- the value of the
offsetFromStart
record component
-
priority
public gov.nasa.jpl.aerie.merlin.driver.engine.SubInstant priority()Returns the value of thepriority
record component.- Returns:
- the value of the
priority
record component
-