Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for otherConverter (0.09 sec)

  1. 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.
         */
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 23K bytes
    - Viewed (0)
Back to top