Replace the value at the i'th position in the list with the given value. If the list is too short to have an i'th element, throws a {@link ListIndexException}.
@param i The index into the list, from 0 @param value The new value to associate with the i'th list element @return The value that was previously at position i in the list @exception ListIndexException if the list has fewer than (i + 1)elements.
|
|
|
|
|
|
|
|
|
|
|
|