Search Options

Display Count
Sort
Preferred Language
Advanced Search

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

  1. 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 Dec 26 12:43:10 GMT 2025
    - Last Modified: Mon Oct 06 14:51:47 GMT 2025
    - 41.7K bytes
    - Click Count (0)
Back to Top