Is there any collection class in java, that implements push_back() and push_front() methods?
push_back()
push_front()
The class java.util.LinkedList has addFirst/Last(), getFirst/last() and removeFirst/Last().
java.util.LinkedList