Types

Strings

Substrings

ArrayList

Return Method Description
boolean add(E e) Appends element to end of list.
boolean add(int index, E e) Inserts element at specified position in list.
void clear() Removes all elements from the list.
boolean contains(Object o) Returns true is the list contains the item.
E get(int index) Returns element at specified position in list.
int size() Returns number of elements in list.