Package org.orekit.propagation.events
Class FieldEventsLogger.FieldLoggedEvent<T extends CalculusFieldElement<T>>
- java.lang.Object
-
- org.orekit.propagation.events.FieldEventsLogger.FieldLoggedEvent<T>
-
- Type Parameters:
T- type of the field elements
- Enclosing class:
- FieldEventsLogger<T extends CalculusFieldElement<T>>
public static class FieldEventsLogger.FieldLoggedEvent<T extends CalculusFieldElement<T>> extends Object
Class for logged events entries.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ActiongetAction()Getter for the action from the handler.FieldEventDetector<T>getEventDetector()Get the event detector triggered.FieldSpacecraftState<T>getResetState()Get the reset state.FieldSpacecraftState<T>getState()Get the triggering state.booleanisIncreasing()Get the Increasing/decreasing status of the event.
-
-
-
Method Detail
-
getEventDetector
public FieldEventDetector<T> getEventDetector()
Get the event detector triggered.- Returns:
- event detector triggered
-
getState
public FieldSpacecraftState<T> getState()
Get the triggering state.- Returns:
- triggering state
- See Also:
FieldEventHandler.eventOccurred(FieldSpacecraftState, FieldEventDetector, boolean)
-
getResetState
public FieldSpacecraftState<T> getResetState()
Get the reset state. Can be null if not stored.- Returns:
- reset state
- Since:
- 13.1
-
isIncreasing
public boolean isIncreasing()
Get the Increasing/decreasing status of the event.- Returns:
- increasing/decreasing status of the event
- See Also:
FieldEventHandler.eventOccurred(FieldSpacecraftState, FieldEventDetector, boolean)
-
getAction
public Action getAction()
Getter for the action from the handler.- Returns:
- action
- Since:
- 14.0
-
-