Class EmptyDeque<E>

java.lang.Object
java.util.AbstractCollection<E>
java.util.AbstractQueue<E>
org.opendaylight.yangtools.util.EmptyDeque<E>
Type Parameters:
E - the type of elements held in this collection
All Implemented Interfaces:
Iterable<E>, Collection<E>, Deque<E>, Queue<E>, SequencedCollection<E>, Immutable

public final class EmptyDeque<E> extends AbstractQueue<E> implements Deque<E>, Immutable
A specialized always-empty implementation of Deque. This implementation will always refuse new elements in its offer(Object) method.