Class FieldContinueOnEvent<KK extends FieldEventDetector<T>,T extends org.hipparchus.RealFieldElement<T>>
- java.lang.Object
-
- org.orekit.propagation.events.handlers.FieldContinueOnEvent<KK,T>
-
- Type Parameters:
T
- class type for the generic version
- All Implemented Interfaces:
FieldEventHandler<KK,T>
public class FieldContinueOnEvent<KK extends FieldEventDetector<T>,T extends org.hipparchus.RealFieldElement<T>> extends Object implements FieldEventHandler<KK,T>
Event handler which will always returncontinue
as a state.- Author:
- Hank Grabowski
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.orekit.propagation.events.handlers.FieldEventHandler
FieldEventHandler.Action
-
-
Constructor Summary
Constructors Constructor Description FieldContinueOnEvent()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description FieldEventHandler.Action
eventOccurred(FieldSpacecraftState<T> s, KK detector, boolean increasing)
Specific implementation of the eventOccurred interface.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.orekit.propagation.events.handlers.FieldEventHandler
init, resetState
-
-
-
-
Method Detail
-
eventOccurred
public FieldEventHandler.Action eventOccurred(FieldSpacecraftState<T> s, KK detector, boolean increasing)
Specific implementation of the eventOccurred interface.- Specified by:
eventOccurred
in interfaceFieldEventHandler<KK extends FieldEventDetector<T>,T extends org.hipparchus.RealFieldElement<T>>
- Parameters:
s
- SpaceCraft state to be used in the evaluationdetector
- object with appropriate type that can be used in determining correct return stateincreasing
- with the event occurred in an "increasing" or "decreasing" slope direction- Returns:
continue
under all circumstances
-
-