Uses of Class
com.google.common.collect.ForwardingCollection
-
Packages that use ForwardingCollection Package Description com.google.common.collect This package contains generic collection interfaces and implementations, and other utilities for working with collections.com.google.common.reflect This package contains utilities to work with Java reflection.com.google.common.util.concurrent Concurrency utilities. -
-
Uses of ForwardingCollection in com.google.common.collect
Subclasses of ForwardingCollection in com.google.common.collect Modifier and Type Class Description class
EvictingQueue<E>
A non-blocking queue which automatically evicts elements from the head of the queue when attempting to add new elements onto the queue and it is full.class
ForwardingBlockingDeque<E>
Deprecated.This class has moved tocom.google.common.util.concurrent
.class
ForwardingDeque<E>
A deque which forwards all its method calls to another deque.class
ForwardingList<E>
A list which forwards all its method calls to another list.class
ForwardingMultiset<E>
A multiset which forwards all its method calls to another multiset.class
ForwardingNavigableSet<E>
A navigable set which forwards all its method calls to another navigable set.protected class
ForwardingNavigableSet.StandardDescendingSet
A sensible implementation ofNavigableSet.descendingSet()
in terms of the other methods ofNavigableSet
, notably includingNavigableSet.descendingIterator()
.class
ForwardingQueue<E>
A queue which forwards all its method calls to another queue.class
ForwardingSet<E>
A set which forwards all its method calls to another set.class
ForwardingSortedMultiset<E>
A sorted multiset which forwards all its method calls to another sorted multiset.protected class
ForwardingSortedMultiset.StandardDescendingMultiset
A skeleton implementation of a descending multiset view.class
ForwardingSortedSet<E>
A sorted set which forwards all its method calls to another sorted set. -
Uses of ForwardingCollection in com.google.common.reflect
Subclasses of ForwardingCollection in com.google.common.reflect Modifier and Type Class Description class
TypeToken.TypeSet
The set of interfaces and classes thatT
is or is a subtype of. -
Uses of ForwardingCollection in com.google.common.util.concurrent
Subclasses of ForwardingCollection in com.google.common.util.concurrent Modifier and Type Class Description class
ForwardingBlockingDeque<E>
ABlockingDeque
which forwards all its method calls to anotherBlockingDeque
.class
ForwardingBlockingQueue<E>
ABlockingQueue
which forwards all its method calls to anotherBlockingQueue
.
-