Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for DerivedComparable (0.13 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);
      }
    
      private static final long serialVersionUID = 0;
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri May 11 18:08:12 UTC 2012
    - 989 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);
      }
    
      private static final long serialVersionUID = 0;
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 989 bytes
    - Viewed (0)
  3. 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 Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 22.3K bytes
    - Viewed (0)
Back to top