Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for SelfComparableExample (0.48 sec)

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

            .inOrder();
      }
    
      private static class SelfComparableExample implements Comparable<SelfComparableExample> {
        @Override
        public int compareTo(SelfComparableExample o) {
          return 0;
        }
      }
    
      public void testBuilderGenerics_SelfComparable() {
        ImmutableSortedMap.Builder<SelfComparableExample, Object> natural =
            ImmutableSortedMap.naturalOrder();
    
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Mar 07 18:34:03 GMT 2024
    - 27K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/collect/ImmutableSortedMapTest.java

            .inOrder();
      }
    
      private static class SelfComparableExample implements Comparable<SelfComparableExample> {
        @Override
        public int compareTo(SelfComparableExample o) {
          return 0;
        }
      }
    
      public void testBuilderGenerics_SelfComparable() {
        ImmutableSortedMap.Builder<SelfComparableExample, Object> natural =
            ImmutableSortedMap.naturalOrder();
    
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Mar 07 18:34:03 GMT 2024
    - 28.1K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/collect/ImmutableSortedSetTest.java

      private static class SelfComparableExample implements Comparable<SelfComparableExample> {
        @Override
        public int compareTo(SelfComparableExample o) {
          return 0;
        }
      }
    
      public void testBuilderGenerics_SelfComparable() {
        // testing simple creation
        ImmutableSortedSet.Builder<SelfComparableExample> natural = ImmutableSortedSet.naturalOrder();
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Mar 07 18:34:03 GMT 2024
    - 45.2K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/collect/ImmutableSortedSetTest.java

      private static class SelfComparableExample implements Comparable<SelfComparableExample> {
        @Override
        public int compareTo(SelfComparableExample o) {
          return 0;
        }
      }
    
      public void testBuilderGenerics_SelfComparable() {
        // testing simple creation
        ImmutableSortedSet.Builder<SelfComparableExample> natural = ImmutableSortedSet.naturalOrder();
    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)
Back to top