Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for DerivedComparable (0.1 sec)

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

    /**
     * Simple derived class to verify that we handle generics correctly.
     *
     * @author Kevin Bourrillion
     */
    @GwtCompatible
    public class DerivedComparable extends BaseComparable {
      public DerivedComparable(String s) {
        super(s);
      }
    
      @GwtIncompatible @J2ktIncompatible private static final long serialVersionUID = 0;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Feb 13 17:34:21 UTC 2025
    - 1.1K bytes
    - Viewed (0)
  2. android/guava-testlib/src/com/google/common/collect/testing/DerivedComparable.java

    /**
     * Simple derived class to verify that we handle generics correctly.
     *
     * @author Kevin Bourrillion
     */
    @GwtCompatible
    public class DerivedComparable extends BaseComparable {
      public DerivedComparable(String s) {
        super(s);
      }
    
      @GwtIncompatible @J2ktIncompatible private static final long serialVersionUID = 0;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Feb 13 17:34:21 UTC 2025
    - 1.1K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/collect/TreeMultimapNaturalTest.java

      public void testTreeMultimapDerived() {
        TreeMultimap<DerivedComparable, DerivedComparable> multimap = TreeMultimap.create();
        assertEquals(ImmutableMultimap.of(), multimap);
        multimap.put(new DerivedComparable("foo"), new DerivedComparable("f"));
        multimap.put(new DerivedComparable("foo"), new DerivedComparable("o"));
        multimap.put(new DerivedComparable("foo"), new DerivedComparable("o"));
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 22.4K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/collect/MultisetsTest.java

      public void testNewTreeMultisetDerived() {
        TreeMultiset<DerivedComparable> set = TreeMultiset.create();
        assertTrue(set.isEmpty());
        set.add(new DerivedComparable("foo"), 2);
        set.add(new DerivedComparable("bar"), 3);
        assertThat(set)
            .containsExactly(
                new DerivedComparable("bar"),
                new DerivedComparable("bar"),
                new DerivedComparable("bar"),
                new DerivedComparable("foo"),
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 11.2K bytes
    - Viewed (0)
Back to top