Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for StringAsImmutableList (0.3 sec)

  1. android/guava/src/com/google/common/collect/Lists.java

      }
    
      @SuppressWarnings("serial") // serialized using ImmutableList serialization
      private static final class StringAsImmutableList extends ImmutableList<Character> {
    
        private final String string;
    
        StringAsImmutableList(String string) {
          this.string = string;
        }
    
        @Override
        public int indexOf(@CheckForNull Object object) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 16:48:36 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/Lists.java

      }
    
      @SuppressWarnings("serial") // serialized using ImmutableList serialization
      private static final class StringAsImmutableList extends ImmutableList<Character> {
    
        private final String string;
    
        StringAsImmutableList(String string) {
          this.string = string;
        }
    
        @Override
        public int indexOf(@CheckForNull Object object) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 16:48:36 UTC 2024
    - 41.9K bytes
    - Viewed (0)
Back to top