Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ForwardingSortedSet (0.06 sec)

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

            public boolean apply(Entry<String, String> entry) {
              return entry.getKey() != null && entry.getValue() != null;
            }
          };
    
      private static class NonNavigableSortedSet extends ForwardingSortedSet<String> {
    
        private final SortedSet<String> delegate = Sets.newTreeSet(Ordering.natural());
    
        @Override
        protected SortedSet<String> delegate() {
          return delegate;
        }
      }
    
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue May 13 17:27:14 UTC 2025
    - 32.4K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/collect/MapsCollectionTest.java

            public boolean apply(Entry<String, String> entry) {
              return entry.getKey() != null && entry.getValue() != null;
            }
          };
    
      private static class NonNavigableSortedSet extends ForwardingSortedSet<String> {
    
        private final SortedSet<String> delegate = Sets.newTreeSet(Ordering.natural());
    
        @Override
        protected SortedSet<String> delegate() {
          return delegate;
        }
      }
    
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue May 13 17:27:14 UTC 2025
    - 32.4K bytes
    - Viewed (0)
Back to top