Uses of Class
com.google.common.collect.MinMaxPriorityQueue

Packages that use MinMaxPriorityQueue
com.google.common.collect This package contains generic collection interfaces and implementations, and other utilities for working with collections. 
 

Uses of MinMaxPriorityQueue in com.google.common.collect
 

Methods in com.google.common.collect that return MinMaxPriorityQueue
static
<E extends Comparable<E>>
MinMaxPriorityQueue<E>
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.
<T extends B>
MinMaxPriorityQueue<T>
MinMaxPriorityQueue.Builder.create()
          Builds a new min-max priority queue using the previously specified options, and having no initial contents.
static
<E extends Comparable<E>>
MinMaxPriorityQueue<E>
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.
<T extends B>
MinMaxPriorityQueue<T>
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.