Package org.orekit.propagation.events
Interface FunctionalDetector.GFunction
-
- Enclosing class:
- FunctionalDetector
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface @Deprecated public static interface FunctionalDetector.GFunction
Deprecated.UseToDoubleFunction
instead. Will be removed in next major release. A functional interface for theFunctionalDetector.g(SpacecraftState)
function.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description double
apply(SpacecraftState value)
Deprecated.UseToDoubleFunction.applyAsDouble(Object)
instead.
-
-
-
Method Detail
-
apply
@Deprecated double apply(SpacecraftState value)
Deprecated.UseToDoubleFunction.applyAsDouble(Object)
instead. Will be removed in next major release.Applies this function to the given argument.- Parameters:
value
- the function argument- Returns:
- the function result
-
-