Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for separatorEnd (0.33 seconds)

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

                  @Override
                  int separatorStart(int start) {
                    return separatorMatcher.indexIn(toSplit, start);
                  }
    
                  @Override
                  int separatorEnd(int separatorPosition) {
                    return separatorPosition + 1;
                  }
                });
      }
    
      /**
       * Returns a splitter that uses the given fixed string as a separator. For example, {@code
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Feb 23 19:19:10 GMT 2026
    - 23.8K bytes
    - Click Count (0)
  2. android/guava/src/com/google/common/base/Splitter.java

                  @Override
                  int separatorStart(int start) {
                    return separatorMatcher.indexIn(toSplit, start);
                  }
    
                  @Override
                  int separatorEnd(int separatorPosition) {
                    return separatorPosition + 1;
                  }
                });
      }
    
      /**
       * Returns a splitter that uses the given fixed string as a separator. For example, {@code
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Feb 23 19:19:10 GMT 2026
    - 23.8K bytes
    - Click Count (0)
Back to Top