Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for ImmutableListOfGenerator (0.45 seconds)

  1. guava-testlib/src/com/google/common/collect/testing/google/ListGenerators.java

     * Common generators of different types of lists.
     *
     * @author Hayward Chan
     */
    @GwtCompatible
    @NullMarked
    public final class ListGenerators {
    
      private ListGenerators() {}
    
      public static class ImmutableListOfGenerator extends TestStringListGenerator {
        @Override
        protected List<String> create(String[] elements) {
          return ImmutableList.copyOf(elements);
        }
      }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Apr 01 17:27:13 GMT 2026
    - 4.9K bytes
    - Click Count (0)
  2. android/guava-testlib/src/com/google/common/collect/testing/google/ListGenerators.java

     * Common generators of different types of lists.
     *
     * @author Hayward Chan
     */
    @GwtCompatible
    @NullMarked
    public final class ListGenerators {
    
      private ListGenerators() {}
    
      public static class ImmutableListOfGenerator extends TestStringListGenerator {
        @Override
        protected List<String> create(String[] elements) {
          return ImmutableList.copyOf(elements);
        }
      }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Apr 01 17:27:13 GMT 2026
    - 4.9K bytes
    - Click Count (0)
  3. android/guava-tests/test/com/google/common/collect/ImmutableListTest.java

    import com.google.common.collect.testing.google.ListGenerators.ImmutableListMiddleSubListGenerator;
    import com.google.common.collect.testing.google.ListGenerators.ImmutableListOfGenerator;
    import com.google.common.collect.testing.google.ListGenerators.ImmutableListTailSubListGenerator;
    import com.google.common.collect.testing.google.ListGenerators.UnhashableElementsImmutableListGenerator;
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Mar 13 13:01:07 GMT 2026
    - 24.4K bytes
    - Click Count (0)
  4. guava-tests/test/com/google/common/collect/ImmutableListTest.java

    import com.google.common.collect.testing.google.ListGenerators.ImmutableListMiddleSubListGenerator;
    import com.google.common.collect.testing.google.ListGenerators.ImmutableListOfGenerator;
    import com.google.common.collect.testing.google.ListGenerators.ImmutableListTailSubListGenerator;
    import com.google.common.collect.testing.google.ListGenerators.UnhashableElementsImmutableListGenerator;
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Mar 13 13:01:07 GMT 2026
    - 23.8K bytes
    - Click Count (0)
Back to Top