Class DummyStepHandler
java.lang.Object
org.hipparchus.migration.ode.sampling.DummyStepHandler
- All Implemented Interfaces:
ODEStepHandler
Deprecated.
as of 1.0, this class is not used anymore
This class is a step handler that does nothing.
This class is provided as a convenience for users who are only interested in the final state of an integration and not in the intermediate steps. Its handleStep method does nothing.
Since this class has no internal state, it is implemented using the Singleton design pattern. This means that only one instance is ever created, which can be retrieved using the getInstance method. This explains why there is no public constructor.
-
Method Summary
Modifier and TypeMethodDescriptionstatic DummyStepHandler
Deprecated.Get the only instance.void
handleStep
(ODEStateInterpolator interpolator) Deprecated.Handle the last accepted step.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.hipparchus.ode.sampling.ODEStepHandler
finish, init
-
Method Details
-
getInstance
Deprecated.Get the only instance.- Returns:
- the only instance
-
handleStep
Deprecated.Handle the last accepted step.- Specified by:
handleStep
in interfaceODEStepHandler
- Parameters:
interpolator
- interpolator for the last accepted step
-