Uses of Interface
org.hipparchus.ode.events.ODEStepEndHandler
-
Packages that use ODEStepEndHandler Package Description org.hipparchus.ode This package provides classes to solve Ordinary Differential Equations problems.org.hipparchus.ode.events Events -
-
Uses of ODEStepEndHandler in org.hipparchus.ode
Methods in org.hipparchus.ode that return types with arguments of type ODEStepEndHandler Modifier and Type Method Description List<ODEStepEndHandler>
AbstractIntegrator. getStepEndHandlers()
Get all the handlers for step ends that have been added to the integrator.List<ODEStepEndHandler>
ODEIntegrator. getStepEndHandlers()
Get all the handlers for step ends that have been added to the integrator.Methods in org.hipparchus.ode with parameters of type ODEStepEndHandler Modifier and Type Method Description void
AbstractIntegrator. addStepEndHandler(ODEStepEndHandler handler)
Add a handler for step ends to the integrator.void
ODEIntegrator. addStepEndHandler(ODEStepEndHandler handler)
Add a handler for step ends to the integrator. -
Uses of ODEStepEndHandler in org.hipparchus.ode.events
Methods in org.hipparchus.ode.events that return ODEStepEndHandler Modifier and Type Method Description ODEStepEndHandler
StepEndEventState. getHandler()
Get the underlying step end handler.Constructors in org.hipparchus.ode.events with parameters of type ODEStepEndHandler Constructor Description StepEndEventState(ODEStepEndHandler handler)
Simple constructor.
-