Klasse MoveableArrayList<E>

java.lang.Object
java.util.AbstractCollection<E>
java.util.AbstractList<E>
java.util.ArrayList<E>
org.eclipse.net4j.util.collection.MoveableArrayList<E>
Alle implementierten Schnittstellen:
Serializable, Cloneable, Iterable<E>, Collection<E>, List<E>, RandomAccess, SequencedCollection<E>, MoveableList<E>

public class MoveableArrayList<E> extends ArrayList<E> implements MoveableList<E>
A list with O(1) effort for random access.

Whenever possible EMF's BasicEList should be used in favour of this list implementation.

Autor:
Eike Stepper
Siehe auch:
  • Konstruktordetails

    • MoveableArrayList

      public MoveableArrayList(int initialCapacity)
  • Methodendetails

    • move

      public void move(int newPosition, Object object)
      Seit:
      3.0
    • move

      public E move(int targetIndex, int sourceIndex)
      Angegeben von:
      move in Schnittstelle MoveableList<E>