Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for otherConverter (0.1 seconds)

  1. guava/src/com/google/common/base/Converter.java

        }
    
        @Override
        public IdentityConverter<T> reverse() {
          return this;
        }
    
        @Override
        <S> Converter<T, S> doAndThen(Converter<T, S> otherConverter) {
          return checkNotNull(otherConverter, "otherConverter");
        }
    
        /*
         * We *could* override convertAll() to return its input, but it's a rather pointless
         * optimization and opened up a weird type-safety problem.
         */
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Jun 18 21:43:06 GMT 2025
    - 22.8K bytes
    - Click Count (0)
  2. android/guava/src/com/google/common/base/Converter.java

        }
    
        @Override
        public IdentityConverter<T> reverse() {
          return this;
        }
    
        @Override
        <S> Converter<T, S> doAndThen(Converter<T, S> otherConverter) {
          return checkNotNull(otherConverter, "otherConverter");
        }
    
        /*
         * We *could* override convertAll() to return its input, but it's a rather pointless
         * optimization and opened up a weird type-safety problem.
         */
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Jun 18 21:43:06 GMT 2025
    - 22.8K bytes
    - Click Count (0)
Back to Top