Class DummyStepHandler
- java.lang.Object
-
- org.hipparchus.migration.ode.sampling.DummyStepHandler
-
- All Implemented Interfaces:
ODEStepHandler
@Deprecated public class DummyStepHandler extends Object implements ODEStepHandler
Deprecated.as of 1.0, this class is not used anymoreThis 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
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static DummyStepHandler
getInstance()
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 Detail
-
getInstance
public static DummyStepHandler getInstance()
Deprecated.Get the only instance.- Returns:
- the only instance
-
handleStep
public void handleStep(ODEStateInterpolator interpolator)
Deprecated.Handle the last accepted step.- Specified by:
handleStep
in interfaceODEStepHandler
- Parameters:
interpolator
- interpolator for the last accepted step
-
-