Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for fromString (0.47 sec)

  1. android/guava/src/com/google/common/hash/HashCode.java

       * lenient {@code base 16} decoding, please use {@link com.google.common.io.BaseEncoding#decode}
       * (and pass the result to {@link #fromBytes}).
       *
       * @since 15.0
       */
      public static HashCode fromString(String string) {
        checkArgument(
            string.length() >= 2, "input string (%s) must have at least 2 characters", string);
        checkArgument(
            string.length() % 2 == 0,
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Apr 20 18:43:59 GMT 2021
    - 12.6K bytes
    - Viewed (0)
Back to top