com.google.common.collect.MinMaxPriorityQueue.<init>()方法的使用及代码示例

x33g5p2x  于2022-01-25 转载在 其他  
字(7.1k)|赞(0)|评价(0)|浏览(81)

本文整理了Java中com.google.common.collect.MinMaxPriorityQueue.<init>()方法的一些代码示例,展示了MinMaxPriorityQueue.<init>()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。MinMaxPriorityQueue.<init>()方法的具体详情如下:
包路径:com.google.common.collect.MinMaxPriorityQueue
类名称:MinMaxPriorityQueue
方法名:<init>

MinMaxPriorityQueue.<init>介绍

暂无

代码示例

代码示例来源:origin: google/guava

/**
 * Builds a new min-max priority queue using the previously specified options, and having the
 * given initial elements.
 */
public <T extends B> MinMaxPriorityQueue<T> create(Iterable<? extends T> initialContents) {
 MinMaxPriorityQueue<T> queue =
   new MinMaxPriorityQueue<T>(
     this, initialQueueSize(expectedSize, maximumSize, initialContents));
 for (T element : initialContents) {
  queue.offer(element);
 }
 return queue;
}

代码示例来源:origin: google/j2objc

/**
 * Builds a new min-max priority queue using the previously specified options, and having the
 * given initial elements.
 */
public <T extends B> MinMaxPriorityQueue<T> create(Iterable<? extends T> initialContents) {
 MinMaxPriorityQueue<T> queue =
   new MinMaxPriorityQueue<T>(
     this, initialQueueSize(expectedSize, maximumSize, initialContents));
 for (T element : initialContents) {
  queue.offer(element);
 }
 return queue;
}

代码示例来源:origin: wildfly/wildfly

/**
 * Builds a new min-max priority queue using the previously specified options, and having the
 * given initial elements.
 */
public <T extends B> MinMaxPriorityQueue<T> create(Iterable<? extends T> initialContents) {
 MinMaxPriorityQueue<T> queue =
   new MinMaxPriorityQueue<T>(
     this, initialQueueSize(expectedSize, maximumSize, initialContents));
 for (T element : initialContents) {
  queue.offer(element);
 }
 return queue;
}

代码示例来源:origin: com.diffplug.guava/guava-collect

/**
 * Builds a new min-max priority queue using the previously specified
 * options, and having the given initial elements.
 */
public <T extends B> MinMaxPriorityQueue<T> create(Iterable<? extends T> initialContents) {
  MinMaxPriorityQueue<T> queue = new MinMaxPriorityQueue<T>(
      this, initialQueueSize(expectedSize, maximumSize, initialContents));
  for (T element : initialContents) {
    queue.offer(element);
  }
  return queue;
}

代码示例来源:origin: org.kill-bill.billing/killbill-platform-osgi-bundles-logger

/**
 * Builds a new min-max priority queue using the previously specified options, and having the
 * given initial elements.
 */
public <T extends B> MinMaxPriorityQueue<T> create(Iterable<? extends T> initialContents) {
 MinMaxPriorityQueue<T> queue =
   new MinMaxPriorityQueue<T>(
     this, initialQueueSize(expectedSize, maximumSize, initialContents));
 for (T element : initialContents) {
  queue.offer(element);
 }
 return queue;
}

代码示例来源:origin: at.bestsolution.efxclipse.eclipse/com.google.guava

/**
 * Builds a new min-max priority queue using the previously specified
 * options, and having the given initial elements.
 */
public <T extends B> MinMaxPriorityQueue<T> create(
  Iterable<? extends T> initialContents) {
 MinMaxPriorityQueue<T> queue = new MinMaxPriorityQueue<T>(
   this, initialQueueSize(expectedSize, maximumSize, initialContents));
 for (T element : initialContents) {
  queue.offer(element);
 }
 return queue;
}

代码示例来源:origin: Nextdoor/bender

/**
 * Builds a new min-max priority queue using the previously specified
 * options, and having the given initial elements.
 */
public <T extends B> MinMaxPriorityQueue<T> create(
  Iterable<? extends T> initialContents) {
 MinMaxPriorityQueue<T> queue = new MinMaxPriorityQueue<T>(
   this, initialQueueSize(expectedSize, maximumSize, initialContents));
 for (T element : initialContents) {
  queue.offer(element);
 }
 return queue;
}

代码示例来源:origin: org.hudsonci.lib.guava/guava

/**
 * Builds a new min-max priority queue using the previously specified
 * options, and having the given initial elements.
 */
public <T extends B> MinMaxPriorityQueue<T> create(
  Iterable<? extends T> initialContents) {
 MinMaxPriorityQueue<T> queue = new MinMaxPriorityQueue<T>(
   this, initialQueueSize(expectedSize, maximumSize, initialContents));
 for (T element : initialContents) {
  queue.offer(element);
 }
 return queue;
}

代码示例来源:origin: org.sonatype.sisu/sisu-guava

/**
 * Builds a new min-max priority queue using the previously specified
 * options, and having the given initial elements.
 */
public <T extends B> MinMaxPriorityQueue<T> create(
  Iterable<? extends T> initialContents) {
 MinMaxPriorityQueue<T> queue = new MinMaxPriorityQueue<T>(
   this, initialQueueSize(expectedSize, maximumSize, initialContents));
 for (T element : initialContents) {
  queue.offer(element);
 }
 return queue;
}

代码示例来源:origin: com.google.guava/guava-jdk5

/**
 * Builds a new min-max priority queue using the previously specified
 * options, and having the given initial elements.
 */
public <T extends B> MinMaxPriorityQueue<T> create(
  Iterable<? extends T> initialContents) {
 MinMaxPriorityQueue<T> queue = new MinMaxPriorityQueue<T>(
   this, initialQueueSize(expectedSize, maximumSize, initialContents));
 for (T element : initialContents) {
  queue.offer(element);
 }
 return queue;
}

代码示例来源:origin: com.atlassian.bundles/guava

/**
 * Builds a new min-max priority queue using the previously specified
 * options, and having the given initial elements.
 */
public <T extends B> MinMaxPriorityQueue<T> create(
  Iterable<? extends T> initialContents) {
 MinMaxPriorityQueue<T> queue = new MinMaxPriorityQueue<T>(
   this, initialQueueSize(expectedSize, maximumSize, initialContents));
 for (T element : initialContents) {
  queue.offer(element);
 }
 return queue;
}

代码示例来源:origin: org.kill-bill.billing/killbill-osgi-bundles-jruby

/**
 * Builds a new min-max priority queue using the previously specified
 * options, and having the given initial elements.
 */
public <T extends B> MinMaxPriorityQueue<T> create(
  Iterable<? extends T> initialContents) {
 MinMaxPriorityQueue<T> queue = new MinMaxPriorityQueue<T>(
   this, initialQueueSize(expectedSize, maximumSize, initialContents));
 for (T element : initialContents) {
  queue.offer(element);
 }
 return queue;
}

代码示例来源:origin: org.jboss.eap/wildfly-client-all

/**
 * Builds a new min-max priority queue using the previously specified options, and having the
 * given initial elements.
 */
public <T extends B> MinMaxPriorityQueue<T> create(Iterable<? extends T> initialContents) {
 MinMaxPriorityQueue<T> queue =
   new MinMaxPriorityQueue<T>(
     this, initialQueueSize(expectedSize, maximumSize, initialContents));
 for (T element : initialContents) {
  queue.offer(element);
 }
 return queue;
}

代码示例来源:origin: com.ning.billing/killbill-osgi-bundles-jruby

/**
 * Builds a new min-max priority queue using the previously specified
 * options, and having the given initial elements.
 */
public <T extends B> MinMaxPriorityQueue<T> create(
  Iterable<? extends T> initialContents) {
 MinMaxPriorityQueue<T> queue = new MinMaxPriorityQueue<T>(
   this, initialQueueSize(expectedSize, maximumSize, initialContents));
 for (T element : initialContents) {
  queue.offer(element);
 }
 return queue;
}

代码示例来源:origin: com.ning.billing/killbill-osgi-bundles-analytics

/**
 * Builds a new min-max priority queue using the previously specified
 * options, and having the given initial elements.
 */
public <T extends B> MinMaxPriorityQueue<T> create(
  Iterable<? extends T> initialContents) {
 MinMaxPriorityQueue<T> queue = new MinMaxPriorityQueue<T>(
   this, initialQueueSize(expectedSize, maximumSize, initialContents));
 for (T element : initialContents) {
  queue.offer(element);
 }
 return queue;
}

相关文章