Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for newPriorityQueue (0.08 seconds)

  1. src/main/java/org/codelibs/core/collection/CollectionsUtil.java

         *
         * @param <E> the element type of {@link PriorityQueue}
         * @return a new instance of {@link PriorityQueue}
         * @see PriorityQueue#PriorityQueue()
         */
        public static <E> PriorityQueue<E> newPriorityQueue() {
            return new PriorityQueue<>();
        }
    
        /**
         * Creates and returns a new instance of {@link PriorityQueue}.
         *
         * @param <E> the element type of {@link PriorityQueue}
    Created: Fri Apr 03 20:58:12 GMT 2026
    - Last Modified: Thu Jul 31 08:16:49 GMT 2025
    - 49.9K bytes
    - Click Count (0)
  2. guava/src/com/google/common/collect/Queues.java

       *     in 15.0)
       */
      @SuppressWarnings("rawtypes") // https://github.com/google/guava/issues/989
      public static <E extends Comparable> PriorityQueue<E> newPriorityQueue() {
        return new PriorityQueue<>();
      }
    
      /**
       * Creates a {@code PriorityQueue} containing the given elements.
       *
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Feb 23 19:19:10 GMT 2026
    - 18K bytes
    - Click Count (0)
  3. android/guava/src/com/google/common/collect/Queues.java

       *     in 15.0)
       */
      @SuppressWarnings("rawtypes") // https://github.com/google/guava/issues/989
      public static <E extends Comparable> PriorityQueue<E> newPriorityQueue() {
        return new PriorityQueue<>();
      }
    
      /**
       * Creates a {@code PriorityQueue} containing the given elements.
       *
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Feb 23 19:19:10 GMT 2026
    - 18.2K bytes
    - Click Count (0)
Back to Top