Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for AbstractImmutableSortedMapMapInterfaceTest (0.54 sec)

  1. guava-tests/test/com/google/common/collect/AbstractImmutableSortedMapMapInterfaceTest.java

    import java.util.Map;
    import java.util.Map.Entry;
    import java.util.SortedMap;
    
    @GwtCompatible
    public abstract class AbstractImmutableSortedMapMapInterfaceTest<K, V>
        extends SortedMapInterfaceTest<K, V> {
      public AbstractImmutableSortedMapMapInterfaceTest() {
        super(false, false, false, false, false);
      }
    
      @Override
      protected SortedMap<K, V> makeEmptyMap() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 17 01:34:55 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/collect/RegularImmutableSortedMapMapInterfaceTest.java

    package com.google.common.collect;
    
    import com.google.common.annotations.GwtCompatible;
    import java.util.SortedMap;
    
    @GwtCompatible
    public class RegularImmutableSortedMapMapInterfaceTest
        extends AbstractImmutableSortedMapMapInterfaceTest<String, Integer> {
      @Override
      protected SortedMap<String, Integer> makeEmptyMap() {
        return ImmutableSortedMap.of();
      }
    
      @Override
      protected SortedMap<String, Integer> makePopulatedMap() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 17 01:34:55 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/collect/ImmutableSortedMapHeadMapInclusiveMapInterfaceTest.java

    package com.google.common.collect;
    
    import com.google.common.annotations.GwtCompatible;
    import java.util.SortedMap;
    
    @GwtCompatible
    public class ImmutableSortedMapHeadMapInclusiveMapInterfaceTest
        extends AbstractImmutableSortedMapMapInterfaceTest<String, Integer> {
      @Override
      protected SortedMap<String, Integer> makePopulatedMap() {
        return ImmutableSortedMap.of("a", 1, "b", 2, "c", 3, "d", 4, "e", 5).headMap("c", true);
      }
    
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 17 01:34:55 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/collect/ImmutableSortedMapHeadMapMapInterfaceTest.java

    package com.google.common.collect;
    
    import com.google.common.annotations.GwtCompatible;
    import java.util.SortedMap;
    
    @GwtCompatible
    public class ImmutableSortedMapHeadMapMapInterfaceTest
        extends AbstractImmutableSortedMapMapInterfaceTest<String, Integer> {
      @Override
      protected SortedMap<String, Integer> makePopulatedMap() {
        return ImmutableSortedMap.of("a", 1, "b", 2, "c", 3, "d", 4, "e", 5).headMap("d");
      }
    
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 17 01:34:55 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/collect/ImmutableSortedMapSubMapMapInterfaceTest.java

    package com.google.common.collect;
    
    import com.google.common.annotations.GwtCompatible;
    import java.util.SortedMap;
    
    @GwtCompatible
    public class ImmutableSortedMapSubMapMapInterfaceTest
        extends AbstractImmutableSortedMapMapInterfaceTest<String, Integer> {
      @Override
      protected SortedMap<String, Integer> makePopulatedMap() {
        return ImmutableSortedMap.of("a", 1, "b", 2, "c", 3, "d", 4, "e", 5).subMap("b", "d");
      }
    
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 17 01:34:55 UTC 2022
    - 1.2K bytes
    - Viewed (0)
Back to top