Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for newLinkedHashSet (0.05 sec)

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

         *
         * @param <E> the element type of {@link LinkedHashSet}
         * @return a new instance of {@link LinkedHashSet}
         * @see LinkedHashSet#LinkedHashSet()
         */
        public static <E> LinkedHashSet<E> newLinkedHashSet() {
            return new LinkedHashSet<>();
        }
    
        /**
         * Creates and returns a new instance of {@link LinkedHashSet}.
         *
         * @param <E> the element type of {@link LinkedHashSet}
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 49.9K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Sets.java

       *
       * @return a new, empty {@code LinkedHashSet}
       */
      @SuppressWarnings("NonApiType") // acts as a direct substitute for a constructor call
      public static <E extends @Nullable Object> LinkedHashSet<E> newLinkedHashSet() {
        return new LinkedHashSet<>();
      }
    
      /**
       * Creates a <i>mutable</i> {@code LinkedHashSet} instance containing the given elements in order.
       *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 81.6K bytes
    - Viewed (0)
Back to top