类 DummyStepHandler
java.lang.Object
org.hipparchus.migration.ode.sampling.DummyStepHandler
- 所有已实现的接口:
-
ODEStepHandler
已过时。
as of 1.0, this class is not used anymore
这个类是一个什么都不做的步骤处理器。
这个类为那些只对积分的最终状态感兴趣而不关心中间步骤的用户提供了便利。它的handleStep方法什么也不做。
由于这个类没有内部状态,它是使用单例设计模式实现的。这意味着只会创建一个实例,可以使用getInstance方法检索该实例。这就解释了为什么没有公共构造函数。
-
方法概要
修饰符和类型方法说明static DummyStepHandler
已过时。获取唯一实例。void
handleStep
(ODEStateInterpolator interpolator) 已过时。处理最后接受的步骤。从类继承的方法 java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
从接口继承的方法 org.hipparchus.ode.sampling.ODEStepHandler
finish, init
-
方法详细资料
-
getInstance
已过时。获取唯一实例。- 返回:
- 唯一实例
-
handleStep
已过时。处理最后接受的步骤。- 指定者:
-
handleStep
在接口中ODEStepHandler
- 参数:
-
interpolator
- 最后接受的步骤的插值器
-