Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for hasLowerCase (0.23 seconds)

  1. android/guava/src/com/google/common/io/BaseEncoding.java

            } else {
              throw new DecodingException("Unrecognized character: " + ch);
            }
          }
          return result;
        }
    
        private boolean hasLowerCase() {
          for (char c : chars) {
            if (Ascii.isLowerCase(c)) {
              return true;
            }
          }
          return false;
        }
    
        private boolean hasUpperCase() {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Mar 17 16:45:58 GMT 2026
    - 41.6K bytes
    - Click Count (0)
Back to Top