Class ImmutableDequeFacade<T>
- java.lang.Object
-
- de.gematik.test.tiger.common.util.ImmutableDequeFacade<T>
-
-
Constructor Summary
Constructors Constructor Description ImmutableDequeFacade(Deque<T> remoteDeque)
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description booleanadd(T o)Deprecated.booleanaddAll(Collection<? extends T> c)Deprecated.voidaddFirst(T o)Deprecated.voidaddLast(T o)Deprecated.voidclear()Deprecated.booleancontains(Object o)booleancontainsAll(Collection c)Iterator<T>descendingIterator()Telement()TgetFirst()TgetLast()booleanisEmpty()Iterator<T>iterator()booleanoffer(T o)Deprecated.booleanofferFirst(T o)Deprecated.booleanofferLast(T o)Deprecated.Tpeek()TpeekFirst()TpeekLast()Tpoll()Deprecated.TpollFirst()Deprecated.TpollLast()Deprecated.Tpop()Deprecated.voidpush(Object o)Deprecated.Tremove()Deprecated.booleanremove(Object o)Deprecated.booleanremoveAll(Collection c)Deprecated.TremoveFirst()Deprecated.booleanremoveFirstOccurrence(Object o)Deprecated.TremoveLast()Deprecated.booleanremoveLastOccurrence(Object o)Deprecated.booleanretainAll(Collection c)Deprecated.intsize()Object[]toArray()Object[]toArray(Object[] a)-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.util.Collection
equals, hashCode, parallelStream, removeIf, spliterator, stream, toArray
-
-
-
-
Constructor Detail
-
ImmutableDequeFacade
@ConstructorProperties("remoteDeque") public ImmutableDequeFacade(Deque<T> remoteDeque)
-
-
Method Detail
-
addFirst
@Deprecated public void addFirst(T o)
Deprecated.
-
addLast
@Deprecated public void addLast(T o)
Deprecated.
-
offerFirst
@Deprecated public boolean offerFirst(T o)
Deprecated.- Specified by:
offerFirstin interfaceDeque<T>
-
offerLast
@Deprecated public boolean offerLast(T o)
Deprecated.
-
removeFirst
@Deprecated public T removeFirst()
Deprecated.- Specified by:
removeFirstin interfaceDeque<T>
-
removeLast
@Deprecated public T removeLast()
Deprecated.- Specified by:
removeLastin interfaceDeque<T>
-
pollFirst
@Deprecated public T pollFirst()
Deprecated.
-
pollLast
@Deprecated public T pollLast()
Deprecated.
-
retainAll
@Deprecated public boolean retainAll(Collection c)
Deprecated.- Specified by:
retainAllin interfaceCollection<T>
-
removeAll
@Deprecated public boolean removeAll(Collection c)
Deprecated.- Specified by:
removeAllin interfaceCollection<T>
-
removeFirstOccurrence
@Deprecated public boolean removeFirstOccurrence(Object o)
Deprecated.- Specified by:
removeFirstOccurrencein interfaceDeque<T>
-
removeLastOccurrence
@Deprecated public boolean removeLastOccurrence(Object o)
Deprecated.- Specified by:
removeLastOccurrencein interfaceDeque<T>
-
add
@Deprecated public boolean add(T o)
Deprecated.
-
offer
@Deprecated public boolean offer(T o)
Deprecated.
-
remove
@Deprecated public T remove()
Deprecated.
-
poll
@Deprecated public T poll()
Deprecated.
-
element
public T element()
-
peek
public T peek()
-
addAll
@Deprecated public boolean addAll(Collection<? extends T> c)
Deprecated.
-
clear
@Deprecated public void clear()
Deprecated.- Specified by:
clearin interfaceCollection<T>
-
push
@Deprecated public void push(Object o)
Deprecated.
-
pop
@Deprecated public T pop()
Deprecated.
-
remove
@Deprecated public boolean remove(Object o)
Deprecated.
-
containsAll
public boolean containsAll(Collection c)
- Specified by:
containsAllin interfaceCollection<T>
-
contains
public boolean contains(Object o)
-
size
public int size()
-
isEmpty
public boolean isEmpty()
- Specified by:
isEmptyin interfaceCollection<T>
-
toArray
public Object[] toArray()
- Specified by:
toArrayin interfaceCollection<T>
-
toArray
public Object[] toArray(Object[] a)
- Specified by:
toArrayin interfaceCollection<T>
-
descendingIterator
public Iterator<T> descendingIterator()
- Specified by:
descendingIteratorin interfaceDeque<T>
-
-