Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for LegacyComparable (0.25 sec)

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

    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    class LegacyComparable implements Comparable, Serializable {
      static final LegacyComparable X = new LegacyComparable("x");
      static final LegacyComparable Y = new LegacyComparable("y");
      static final LegacyComparable Z = new LegacyComparable("z");
    
      static final Iterable<LegacyComparable> VALUES_FORWARD = Arrays.asList(X, Y, Z);
      static final Iterable<LegacyComparable> VALUES_BACKWARD = Arrays.asList(Z, Y, X);
    
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Feb 22 20:09:59 GMT 2024
    - 2.3K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/collect/LegacyComparable.java

    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    class LegacyComparable implements Comparable, Serializable {
      static final LegacyComparable X = new LegacyComparable("x");
      static final LegacyComparable Y = new LegacyComparable("y");
      static final LegacyComparable Z = new LegacyComparable("z");
    
      static final Iterable<LegacyComparable> VALUES_FORWARD = Arrays.asList(X, Y, Z);
      static final Iterable<LegacyComparable> VALUES_BACKWARD = Arrays.asList(Z, Y, X);
    
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 22 20:09:59 GMT 2024
    - 2.3K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/collect/TreeMultimapNaturalTest.java

      public void testTreeMultimapNonGeneric() {
        TreeMultimap<LegacyComparable, LegacyComparable> multimap = TreeMultimap.create();
        assertEquals(ImmutableMultimap.of(), multimap);
        multimap.put(new LegacyComparable("foo"), new LegacyComparable("f"));
        multimap.put(new LegacyComparable("foo"), new LegacyComparable("o"));
        multimap.put(new LegacyComparable("foo"), new LegacyComparable("o"));
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Mar 07 18:34:03 GMT 2024
    - 22.6K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/collect/ImmutableSortedSetTest.java

            ImmutableSortedSet.of(LegacyComparable.Z, LegacyComparable.Y);
        assertThat(set2).containsExactly(LegacyComparable.Y, LegacyComparable.Z);
      }
    
      public void testLegacyComparable_copyOf_collection() {
        ImmutableSortedSet<LegacyComparable> set =
            ImmutableSortedSet.copyOf(LegacyComparable.VALUES_BACKWARD);
        assertTrue(Iterables.elementsEqual(LegacyComparable.VALUES_FORWARD, set));
      }
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Mar 07 18:34:03 GMT 2024
    - 46.1K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/collect/MultisetsTest.java

      public void testNewTreeMultisetNonGeneric() {
        TreeMultiset<LegacyComparable> set = TreeMultiset.create();
        assertTrue(set.isEmpty());
        set.add(new LegacyComparable("foo"), 2);
        set.add(new LegacyComparable("bar"), 3);
        assertThat(set)
            .containsExactly(
                new LegacyComparable("bar"),
                new LegacyComparable("bar"),
                new LegacyComparable("bar"),
                new LegacyComparable("foo"),
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Feb 19 20:34:55 GMT 2024
    - 11.3K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/collect/ImmutableSortedSetTest.java

            ImmutableSortedSet.of(LegacyComparable.Z, LegacyComparable.Y);
        assertThat(set2).containsExactly(LegacyComparable.Y, LegacyComparable.Z);
      }
    
      public void testLegacyComparable_copyOf_collection() {
        ImmutableSortedSet<LegacyComparable> set =
            ImmutableSortedSet.copyOf(LegacyComparable.VALUES_BACKWARD);
        assertTrue(Iterables.elementsEqual(LegacyComparable.VALUES_FORWARD, set));
      }
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Mar 07 18:34:03 GMT 2024
    - 45.2K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/collect/TreeMultimapNaturalTest.java

      public void testTreeMultimapNonGeneric() {
        TreeMultimap<LegacyComparable, LegacyComparable> multimap = TreeMultimap.create();
        assertEquals(ImmutableMultimap.of(), multimap);
        multimap.put(new LegacyComparable("foo"), new LegacyComparable("f"));
        multimap.put(new LegacyComparable("foo"), new LegacyComparable("o"));
        multimap.put(new LegacyComparable("foo"), new LegacyComparable("o"));
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Mar 07 18:34:03 GMT 2024
    - 22.6K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/collect/MultisetsTest.java

      public void testNewTreeMultisetNonGeneric() {
        TreeMultiset<LegacyComparable> set = TreeMultiset.create();
        assertTrue(set.isEmpty());
        set.add(new LegacyComparable("foo"), 2);
        set.add(new LegacyComparable("bar"), 3);
        assertThat(set)
            .containsExactly(
                new LegacyComparable("bar"),
                new LegacyComparable("bar"),
                new LegacyComparable("bar"),
                new LegacyComparable("foo"),
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Mon Feb 19 20:34:55 GMT 2024
    - 12.3K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/collect/SetsTest.java

      }
    
      public void testNewTreeSetFromIterableNonGeneric() {
        Iterable<LegacyComparable> iterable =
            Arrays.asList(new LegacyComparable("foo"), new LegacyComparable("bar"));
        TreeSet<LegacyComparable> set = Sets.newTreeSet(iterable);
        assertThat(set)
            .containsExactly(new LegacyComparable("bar"), new LegacyComparable("foo"))
            .inOrder();
      }
    
      public void testNewTreeSetEmptyWithComparator() {
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Mar 07 18:34:03 GMT 2024
    - 49.3K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/collect/SetsTest.java

      }
    
      public void testNewTreeSetFromIterableNonGeneric() {
        Iterable<LegacyComparable> iterable =
            Arrays.asList(new LegacyComparable("foo"), new LegacyComparable("bar"));
        TreeSet<LegacyComparable> set = Sets.newTreeSet(iterable);
        assertThat(set)
            .containsExactly(new LegacyComparable("bar"), new LegacyComparable("foo"))
            .inOrder();
      }
    
      public void testNewTreeSetEmptyWithComparator() {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Mar 07 18:34:03 GMT 2024
    - 47.9K bytes
    - Viewed (1)
Back to top