Moves items starting from the source index to the destination index.
public void moveItems( int src, int dst, int count )
src
The index of the first item to move.
dst
The destination index of the first item.
count
The number of items to move.
WFCInvalidArgumentException thrown if the src parameter is greater than the item count or less than zero, the count parameter is out of bounds, or the index parameter is out of bounds.