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 AbsoluteDate
getDate()
Get the date.EventDetector
getEventDetector()
Get the event detector triggered.SpacecraftState
getState()
Get the triggering state.boolean
isIncreasing()
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:
getDate
in 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)
-
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)
-
-