类 NonMonotonicSequenceException

所有已实现的接口:
Serializable, LocalizedException

@Deprecated public class NonMonotonicSequenceException extends MathIllegalNumberException
已过时。
as of 1.0, this exception is replaced by MathIllegalArgumentException
当值序列不是单调递增或递减时抛出的异常。
另请参阅:
  • 构造器详细资料

    • NonMonotonicSequenceException

      public NonMonotonicSequenceException(Number wrong, Number previous, int index)
      已过时。
      构造异常。此构造函数使用默认值,假定序列应严格递增。
      参数:
      wrong - 不符合要求的值。
      previous - 序列中的先前值。
      index - 不符合要求的值的索引。
    • NonMonotonicSequenceException

      public NonMonotonicSequenceException(Number wrong, Number previous, int index, MathArrays.OrderDirection direction, boolean strict)
      已过时。
      构造异常。
      参数:
      wrong - 不符合要求的值。
      previous - 序列中的先前值。
      index - 不符合要求的值的索引。
      direction - 严格为正表示序列应递增,为负(或零)表示递减序列。
      strict - 序列必须严格递增或递减。
  • 方法详细资料

    • getDirection

      public MathArrays.OrderDirection getDirection()
      已过时。
      获取顺序方向。
      返回:
      顺序方向
    • getStrict

      public boolean getStrict()
      已过时。
      检查序列是否应严格单调。
      返回:
      序列应严格单调为true
    • getIndex

      public int getIndex()
      已过时。
      获取错误值的索引。
      返回:
      当前索引。
    • getPrevious

      public Number getPrevious()
      已过时。
      获取先前值。
      返回:
      先前值。