public abstract void remove (int from, int to)

A simplified way of calling sublist(from, to).clear(). As this is a common operation, ObservableList has this method for convenient usage.

Parameters:
from    the start of the range to remove (inclusive)
to    the end of the range to remove (exclusive)

Exceptions:
IndexOutOfBoundsException    if an illegal range is provided