インタフェース SNumber<T extends Number>

すべてのスーパーインタフェース:
Comparable<T>, SLockable, SScalar<T>, SVariable, Unlockable
既知のサブインタフェースのリスト:
SDouble, SFloat, SInteger, SLong
既知の実装クラスのリスト:
SDoubleImpl, SFloatImpl, SIntegerImpl, SLongImpl, SNumberImpl

public interface SNumber<T extends Number> extends SScalar<T>, Comparable<T>
  • メソッドの詳細

    • addAndGet

      T addAndGet(T delta)
      Atomically adds the specified value to the current value if the current value is not null.
      パラメータ:
      delta - value to add
      戻り値:
      updated value
      例外:
      NullPointerException - if the specified value is null
    • decrementAndGet

      T decrementAndGet()
      Atomically decrements by one the current value if the current value is not null.
      戻り値:
      updated value
    • getAndAdd

      T getAndAdd(T delta)
      Atomically add the specified value to the current value if the current value is not null.
      パラメータ:
      delta - value to add
      戻り値:
      previous value
      例外:
      NullPointerException - if the specified value is null
    • getAndDecrement

      T getAndDecrement()
      Atomically decrements by one the current value if the current value is not null.
      戻り値:
      previous value
    • getAndIncrement

      T getAndIncrement()
      Atomically increments by one the current value if the current value is not null.
      戻り値:
      previous value
    • incrementAndGet

      T incrementAndGet()
      Atomically increments by one the current value if the current value is not null.
      戻り値:
      updated value
    • equals

      @ThreadSafe boolean equals(Number target)
      Returns true if the specified target is equal to this.
      パラメータ:
      target - the target to be compared
      戻り値:
      true if the specified target is equal to this