クラス SList<V>

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

public abstract class SList<V> extends Object implements SLockable, SVariable, List<V>
Represents the 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.
  • コンストラクタの詳細

    • SList

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

    • replace

      public abstract void replace(Iterable<? extends V> elements)
      Replaces the existing elements with the specified elements if the existing elements are not equal to the specified elements. For testing the equality of elements, V#equals(Object) is used.
      パラメータ:
      elements - new elements
      例外:
      NullPointerException - if the specified iterable is null
    • toDirty

      @ThreadSafe public abstract void toDirty(int index)
      Marks the element of the specified index as updated.
      パラメータ:
      index - index of the element to be marked as updated
    • toDirty

      @ThreadSafe public abstract void toDirty()
      Marks all the elements as updated.
    • clearAndAdd

      @ThreadSafe public abstract boolean clearAndAdd(V element)
      Clear this list and then appends the specified element to this list.
      パラメータ:
      element - element to be appended to this list
      戻り値:
      true
      例外:
      NullPointerException - if this list does not permit null value, and the specified element is null
    • clearAndAddAll

      @ThreadSafe public abstract boolean clearAndAddAll(Collection<? extends V> elements)
      Clear this list and then appends the specified elements to this list.
      パラメータ:
      elements - elements to be appended to this list
      戻り値:
      true if this list is changed as a result of the call
      例外:
      NullPointerException - if the specified collection is null, or if this list does not permit null value, and the specified collection contains null values
    • reset

      @ThreadSafe public abstract V reset(int index)
      Resets the specified index and returns the value at the specified index.
      パラメータ:
      index - the index to be reset
      戻り値:
      the value at the specified index
      例外:
      IndexOutOfBoundsException - if the specified index is out of range (index < 0 || size() <= index )