Methods in com.google.common.collect that return MinMaxPriorityQueue |
static
|
MinMaxPriorityQueue.create()
Creates a new min-max priority queue with default settings: natural order,
no maximum size, no initial contents, and an initial expected size of 11. |
|
MinMaxPriorityQueue.Builder.create()
Builds a new min-max priority queue using the previously specified
options, and having no initial contents. |
static
|
MinMaxPriorityQueue.create(Iterable<? extends E> initialContents)
Creates a new min-max priority queue using natural order, no maximum size,
and initially containing the given elements. |
|
MinMaxPriorityQueue.Builder.create(Iterable<? extends T> initialContents)
Builds a new min-max priority queue using the previously specified
options, and having the given initial elements. |