Package org.orekit.signal
Record Class SignalEmissionCondition
java.lang.Object
java.lang.Record
org.orekit.signal.SignalEmissionCondition
- Record Components:
emissionDate- Signal emission date.emitterPosition- Receiver position's vector at signal emission.referenceFrame- Frame where position is given.
public record SignalEmissionCondition(AbsoluteDate emissionDate, Vector3D emitterPosition, Frame referenceFrame)
extends Record
Data container describing signal emission conditions.
- Since:
- 14.0
- Author:
- Romain Serra
-
Constructor Summary
ConstructorsConstructorDescriptionSignalEmissionCondition(AbsoluteDate emissionDate, Vector3D emitterPosition, Frame referenceFrame) Creates an instance of aSignalEmissionConditionrecord class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theemissionDaterecord component.Returns the value of theemitterPositionrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.Returns the value of thereferenceFramerecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
SignalEmissionCondition
public SignalEmissionCondition(AbsoluteDate emissionDate, Vector3D emitterPosition, Frame referenceFrame) Creates an instance of aSignalEmissionConditionrecord class.- Parameters:
emissionDate- the value for theemissionDaterecord componentemitterPosition- the value for theemitterPositionrecord componentreferenceFrame- the value for thereferenceFramerecord component
-
-
Method Details
-
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). -
emissionDate
Returns the value of theemissionDaterecord component.- Returns:
- the value of the
emissionDaterecord component
-
emitterPosition
Returns the value of theemitterPositionrecord component.- Returns:
- the value of the
emitterPositionrecord component
-
referenceFrame
Returns the value of thereferenceFramerecord component.- Returns:
- the value of the
referenceFramerecord component
-