Example usage for java.util Deque interface-usage

List of usage examples for java.util Deque interface-usage

Introduction

In this page you can find the example usage for java.util Deque interface-usage.

Usage

From source file ArrayDeque.java

/**
 * Resizable-array implementation of the {@link Deque} interface.  Array
 * deques have no capacity restrictions; they grow as necessary to support
 * usage.  They are not thread-safe; in the absence of external
 * synchronization, they do not support concurrent access by multiple threads.
 * Null elements are prohibited.  This class is likely to be faster than

From source file org.omnaest.utils.structure.collection.list.ListAbstract.java

/**
 * This abstract list implementation offers the basic methods like addAll, removeAll, retainAll, etc. which rely only on other
 * list methods and not on any underlying structure. This list offers automatic {@link ListIterator}, {@link Iterator} and sublist
 * which are backed to the given list. <br>
 * <br>
 * Additionally the {@link Deque} interface is completely implemented as well.