Package org.orekit.propagation.events
Class EventsLogger.LoggedEvent
- java.lang.Object
-
- org.orekit.propagation.events.EventsLogger.LoggedEvent
-
- All Implemented Interfaces:
TimeStamped
- Enclosing class:
- EventsLogger
public static class EventsLogger.LoggedEvent extends Object implements TimeStamped
Class for logged events entries.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ActiongetAction()Getter for the action from handler.AbsoluteDategetDate()Get the date.EventDetectorgetEventDetector()Get the event detector triggered.SpacecraftStategetResetState()Get the reset state.SpacecraftStategetState()Get the triggering state.booleanisIncreasing()Get the Increasing/decreasing status of the event.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.orekit.time.TimeStamped
durationFrom
-
-
-
-
Method Detail
-
getEventDetector
public EventDetector getEventDetector()
Get the event detector triggered.- Returns:
- event detector triggered
-
getDate
public AbsoluteDate getDate()
Get the date.- Specified by:
getDatein interfaceTimeStamped- Returns:
- date attached to the object
-
getState
public SpacecraftState getState()
Get the triggering state.- Returns:
- triggering state
- See Also:
EventHandler.eventOccurred(SpacecraftState, EventDetector, boolean)
-
getResetState
public SpacecraftState getResetState()
Get the reset state. Can be null if not stored.- Returns:
- reset state
- Since:
- 13.1
- See Also:
EventHandler.resetState(EventDetector, SpacecraftState)
-
isIncreasing
public boolean isIncreasing()
Get the Increasing/decreasing status of the event.- Returns:
- increasing/decreasing status of the event
- See Also:
EventHandler.eventOccurred(SpacecraftState, EventDetector, boolean)
-
getAction
public Action getAction()
Getter for the action from handler.- Returns:
- action
- Since:
- 14.0
-
-