Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for hasUpperCase (0.17 sec)

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

          }
          return false;
        }
    
        private boolean hasUpperCase() {
          for (char c : chars) {
            if (Ascii.isUpperCase(c)) {
              return true;
            }
          }
          return false;
        }
    
        Alphabet upperCase() {
          if (!hasLowerCase()) {
            return this;
          }
          checkState(!hasUpperCase(), "Cannot call upperCase() on a mixed-case alphabet");
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri Mar 15 16:33:32 GMT 2024
    - 41.7K bytes
    - Viewed (0)
Back to top