Package org.orekit.time
Class PythonTimeScalarFunction
- java.lang.Object
-
- org.orekit.time.PythonTimeScalarFunction
-
- All Implemented Interfaces:
TimeScalarFunction
public class PythonTimeScalarFunction extends Object implements TimeScalarFunction
-
-
Constructor Summary
Constructors Constructor Description PythonTimeScalarFunction()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
finalize()
Part of JCC Python interface to objectvoid
pythonDecRef()
Part of JCC Python interface to objectlong
pythonExtension()
Part of JCC Python interface to objectvoid
pythonExtension(long pythonObject)
Part of JCC Python interface to objectdouble
value(AbsoluteDate date)
Compute a function of time.<T extends CalculusFieldElement<T>>
Tvalue(FieldAbsoluteDate<T> date)
Compute a function of time.
-
-
-
Method Detail
-
pythonExtension
public void pythonExtension(long pythonObject)
Part of JCC Python interface to object
-
pythonExtension
public long pythonExtension()
Part of JCC Python interface to object
-
finalize
public void finalize() throws Throwable
Part of JCC Python interface to object
-
pythonDecRef
public void pythonDecRef()
Part of JCC Python interface to object
-
value
public double value(AbsoluteDate date)
Compute a function of time.- Specified by:
value
in interfaceTimeScalarFunction
- Parameters:
date
- date- Returns:
- value of the function
-
value
public <T extends CalculusFieldElement<T>> T value(FieldAbsoluteDate<T> date)
Compute a function of time.- Specified by:
value
in interfaceTimeScalarFunction
- Type Parameters:
T
- type of the filed elements- Parameters:
date
- date- Returns:
- value of the function
-
-