E set(int index, E e) | ์ปฌ๋ ์
์ ํด๋น index์ ์์นํ ๊ฐ์ฒด๋ฅผ ๋ค์ด์จ ๊ฐ์ฒด e๋ก ๊ต์ฒดํ๊ณ , ๊ธฐ์กด์ ์๋ ๊ฐ์ฒด๋ฅผ ๋ฐํ |
E get(int index) | ํด๋น ์ปฌ๋ ์
์์ ์ฃผ์ด์ง index์ ์์นํ ๊ฐ์ฒด๋ฅผ ๋ฐํ |
E remove(int index) | ์ปฌ๋ ์
์์ ํด๋น index ์์น์ ๊ฐ์ฒด๋ฅผ ์ญ์ ํ๊ณ ๋ฐํ |
int size() | ํด๋น ์ปฌ๋ ์
์ ์์์ ์ด ๊ฐ์๋ฅผ ๋ฐํ |
void clear() | ์ปฌ๋ ์
์ ์ ์ฅ๋ ๋ชจ๋ ๊ฐ์ฒด๋ฅผ ์ญ์ |
void add(int index, E e) | ์ฃผ์ด์ง ๊ฐ์ฒด๋ฅผ ํด๋น ์ปฌ๋ ์
์ ์ฃผ์ด์ง index์ ์ถ๊ฐ |
boolean add(E e) | ์ฃผ์ด์ง ๊ฐ์ฒด e๋ฅผ ์ปฌ๋ ์
๋งจ ๋์ ์ถ๊ฐ, ์ฑ๊ณต ์ฌ๋ถ ๋ฐํ |
boolean contains(Object o) | ํด๋น ์ปฌ๋ ์
์ด ์ ๋ฌ๋ ๊ฐ์ฒด o๋ฅผ ํฌํจํ๊ณ ์๋์ง๋ฅผ ํ์ธ |
boolean isEmpty() | ํด๋น ์ปฌ๋ ์
์ด ๋น์ด์๋ ์ง๋ฅผ ๋ฐํ |
boolean remove(int index) | ์ปฌ๋ ์
ํด๋น index ์์น์ ๊ฐ์ฒด๋ฅผ ์ญ์ , ์ฑ๊ณต ์ฌ๋ถ ๋ฐํ |
boolean remove(Object o) | ํด๋น ๊ฐ์ฒด ์ญ์ |
Iterator<E> iterator() | ๋ฐ๋ณต์(Iterator) ์์ฑ |