Uses of Class
org.orekit.propagation.events.handlers.EventHandler.Action
-
Packages that use EventHandler.Action Package Description org.orekit.propagation.events This package provides interfaces and classes dealing with events occurring during propagation.org.orekit.propagation.events.handlers This package provides an interface and classes dealing with events occurrence only. -
-
Uses of EventHandler.Action in org.orekit.propagation.events
Methods in org.orekit.propagation.events that return EventHandler.Action Modifier and Type Method Description EventHandler.Action
AbstractDetector. eventOccurred(SpacecraftState s, boolean increasing)
Handle the event.EventHandler.Action
AdapterDetector. eventOccurred(SpacecraftState s, boolean increasing)
Handle the event.EventHandler.Action
EventDetector. eventOccurred(SpacecraftState s, boolean increasing)
Handle the event.EventHandler.Action
EventState.EventOccurrence. getAction()
Get the user requested action. -
Uses of EventHandler.Action in org.orekit.propagation.events.handlers
Methods in org.orekit.propagation.events.handlers that return EventHandler.Action Modifier and Type Method Description EventHandler.Action
ContinueOnEvent. eventOccurred(SpacecraftState s, T detector, boolean increasing)
Specific implementation of the eventOccurred interface.EventHandler.Action
EventHandler. eventOccurred(SpacecraftState s, T detector, boolean increasing)
eventOccurred method mirrors the same interface method as inEventDetector
and its subclasses, but with an additional parameter that allows the calling method to pass in an object from the detector which would have potential additional data to allow the implementing class to determine the correct return state.EventHandler.Action
RecordAndContinue. eventOccurred(SpacecraftState s, T detector, boolean increasing)
EventHandler.Action
StopOnDecreasing. eventOccurred(SpacecraftState s, T detector, boolean increasing)
Handle a detection event and choose what to do next.EventHandler.Action
StopOnEvent. eventOccurred(SpacecraftState s, T detector, boolean increasing)
Specific implementation of the eventOccurred interface.EventHandler.Action
StopOnIncreasing. eventOccurred(SpacecraftState s, T detector, boolean increasing)
Handle a detection event and choose what to do next.static EventHandler.Action
EventHandler.Action. valueOf(String name)
Returns the enum constant of this type with the specified name.static EventHandler.Action[]
EventHandler.Action. values()
Returns an array containing the constants of this enum type, in the order they are declared.
-