クラス SMovableList<V>

java.lang.Object
org.wcardinal.controller.data.SList<V>
org.wcardinal.controller.data.SMovableList<V>
型パラメータ:
V - value type
すべての実装されたインタフェース:
Iterable<V>, Collection<V>, List<V>, SLockable, SVariable, Unlockable
直系の既知のサブクラス:
SMovableListImpl

public abstract class SMovableList<V> extends SList<V>
Represents the movable list data. The class V can be any class. However, for synchronization, the class V must be serializable to, and deserializable from JSON by the Jackson.
  • コンストラクタの詳細

    • SMovableList

      public SMovableList()
  • メソッドの詳細

    • move

      public abstract void move(int oldIndex, int newIndex)
      Moves the element at the index oldIndex to the index newIndex.
      パラメータ:
      oldIndex - index of the element to be moved
      newIndex - index where the element is moved to
      例外:
      IndexOutOfBoundsException - if the one of the indices is out of range (index < 0 || size() <= index)