Package org.orekit.signal
Record Class FieldSignalEmissionCondition<T extends CalculusFieldElement<T>>
java.lang.Object
java.lang.Record
org.orekit.signal.FieldSignalEmissionCondition<T>
- Record Components:
emissionDate- Signal emission date.emitterPosition- Receiver position's vector at signal emission.referenceFrame- Frame where position is given.
public record FieldSignalEmissionCondition<T extends CalculusFieldElement<T>>(FieldAbsoluteDate<T extends CalculusFieldElement<T>> emissionDate, FieldVector3D<T extends CalculusFieldElement<T>> emitterPosition, Frame referenceFrame)
extends Record
Data container describing signal emission conditions.
- Since:
- 14.0
- Author:
- Romain Serra
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionFieldSignalEmissionCondition(Field<T> field, SignalEmissionCondition signalEmissionCondition) Constructor from non-Field values.FieldSignalEmissionCondition(FieldAbsoluteDate<T> emissionDate, FieldVector3D<T> emitterPosition, Frame referenceFrame) Creates an instance of aFieldSignalEmissionConditionrecord 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.Method returning a non-field emission condition.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
FieldSignalEmissionCondition
public FieldSignalEmissionCondition(Field<T> field, SignalEmissionCondition signalEmissionCondition) Constructor from non-Field values.- Parameters:
field- fieldsignalEmissionCondition- non-field emission condition
-
FieldSignalEmissionCondition
public FieldSignalEmissionCondition(FieldAbsoluteDate<T> emissionDate, FieldVector3D<T> emitterPosition, Frame referenceFrame) Creates an instance of aFieldSignalEmissionConditionrecord class.- Parameters:
emissionDate- the value for theemissionDaterecord componentemitterPosition- the value for theemitterPositionrecord componentreferenceFrame- the value for thereferenceFramerecord component
-
-
Method Details
-
toEmissionCondition
Method returning a non-field emission condition.- Returns:
- non-field version
-
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
-