Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for LinkedHashSet (0.89 sec)

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

        }
    
        /**
         * Creates and returns a new instance of {@link LinkedHashSet}.
         *
         * @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<>();
        }
    
        /**
    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

       * syntax</a>.
       *
       * @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)
  3. guava-tests/test/com/google/common/collect/IteratorsTest.java

    import java.util.Arrays;
    import java.util.Collection;
    import java.util.Collections;
    import java.util.ConcurrentModificationException;
    import java.util.Enumeration;
    import java.util.Iterator;
    import java.util.LinkedHashSet;
    import java.util.List;
    import java.util.ListIterator;
    import java.util.NoSuchElementException;
    import java.util.RandomAccess;
    import java.util.Set;
    import java.util.Vector;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 54.4K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/collect/IteratorsTest.java

    import java.util.Arrays;
    import java.util.Collection;
    import java.util.Collections;
    import java.util.ConcurrentModificationException;
    import java.util.Enumeration;
    import java.util.Iterator;
    import java.util.LinkedHashSet;
    import java.util.List;
    import java.util.ListIterator;
    import java.util.NoSuchElementException;
    import java.util.RandomAccess;
    import java.util.Set;
    import java.util.Vector;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 54.4K bytes
    - Viewed (0)
  5. okhttp/src/commonJvmAndroid/kotlin/okhttp3/HttpUrl.kt

       */
      @get:JvmName("queryParameterNames")
      val queryParameterNames: Set<String>
        get() {
          if (queryNamesAndValues == null) return emptySet()
          val result = LinkedHashSet<String>(queryNamesAndValues.size / 2, 1.0F)
          for (i in 0 until queryNamesAndValues.size step 2) {
            result.add(queryNamesAndValues[i]!!)
          }
          return result.unmodifiable()
        }
    
      /**
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon May 05 16:01:00 UTC 2025
    - 63.5K bytes
    - Viewed (0)
Back to top