List.remove

List.remove

Class Overview | Class Members | This Package | All Packages

Syntax 1
public synchronized void remove( String item )
Parameters
item
the item to remove from the list.
Description
Removes the first occurrence of an item from the list.

Exceptions
IllegalArgumentException if the item doesn't exist in the list.



Syntax 2
public synchronized void remove( int position )
Parameters
position
the index of the item to delete.
Description
Remove the item at the specified position from this scrolling list.

See Also
add