Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Chan (0.16 sec)

  1. android/guava/src/com/google/common/base/Ascii.java

      public static boolean isUpperCase(char c) {
        return (c >= 'A') && (c <= 'Z');
      }
    
      /**
       * Truncates the given character sequence to the given maximum length. If the length of the
       * sequence is greater than {@code maxLength}, the returned string will be exactly {@code
       * maxLength} chars in length and will end with the given {@code truncationIndicator}. Otherwise,
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Mon Jul 19 15:43:07 GMT 2021
    - 21.6K bytes
    - Viewed (0)
  2. guava/src/com/google/common/base/Ascii.java

      public static boolean isUpperCase(char c) {
        return (c >= 'A') && (c <= 'Z');
      }
    
      /**
       * Truncates the given character sequence to the given maximum length. If the length of the
       * sequence is greater than {@code maxLength}, the returned string will be exactly {@code
       * maxLength} chars in length and will end with the given {@code truncationIndicator}. Otherwise,
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Mon Jul 19 15:43:07 GMT 2021
    - 21.6K bytes
    - Viewed (0)
Back to top