List, Set
추가 : add(Object o), addAll(Collection c)
검색 : contains(Object o), containsAll(Collection c)
삭제 : remove(Object o), removeAll(Collection c)
clear()
순서있고 중복가능 (Vector, ArrayList , LinkedList, Stack)
추가 : add, addAll
검색 : indexof(), LastIndexof
정렬 : sort, subList
읽기, 변경: get , set
순서없고 중복불가 (HashSet, TreeSet)
Collection 인터페이스와 동일
순서없고 키와값으로 구성(HashMap, TreeMap ..)
추가 : put, putAll
삭제 : remove
검색 : containsKey, containsValue
읽기 : entrySet(), KeySet(), get()