Mega Code Archive

 
Categories / Java Book / 005 Collection
 

0327 Add to a collection

static<T> boolean addAll(Collection<? super T> c, T... elements) Adds all of the specified elements to the specified collection. static<T> Queue<T> asLifoQueue(Deque<T> deque) Returns a view of a Deque as a Last-in-first-out (Lifo) Queue.