boolean add(E e) | ์ ๋ฌ๋ Element ์ฝ์
|
E element() | Element๋ฅผ ๋ฐํํ์ง๋ง ์ ๊ฑฐ๋ ์๋จ |
boolean offer(E e) | ์ ๋ฌ๋ Element ์ฝ์
|
E peek() | ๊ฐ์ฅ ๋ง์ง๋ง ์์ ํ์ธ (์์ผ๋ฉด null ๋ฐํ) |
E poll() | ๊ฐ์ฅ ์ ์์ ๋ฐํ ํ ์ ๊ฑฐ (์์ผ๋ฉด null ๋ฐํ) |
boolean remove(Object o) | ์ ๋ฌ๋ ์์ ์ ๊ฑฐ |
Comparator< ? super E > comparator() | ์์ ์ ๋ ฌ์ ์ฌ์ฉ๋๋ ๋น๊ต์ ๋ฐํ ๋๋ ์ ๋ ฌ๋ ๊ฒฝ์ฐ null ๋ฐํ |
boolean contains(Object o) | ์ ๋ฌ๋ ์์๊ฐ ์๋ ๊ฒฝ์ฐ true ๋ฐํ |
int size() | ์ด ํ์ ์์ ์ ๋ฐํ |
Object[] toArray() | ๋ชจ๋ ์์ ํฌํจํ ๋ฐฐ์ด ๋ฐํ |
Iterator< E > iterator() | ์ด ํ ์์์ ๋ํ ๋ฐ๋ณต์ ๋ฐํ |