Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for forUriStringOrNull (0.07 seconds)

  1. android/guava/src/com/google/common/net/InetAddresses.java

       */
      public static InetAddress forUriString(String hostAddr) {
        InetAddress addr = forUriStringOrNull(hostAddr, /* parseScope= */ true);
        if (addr == null) {
          throw formatIllegalArgumentException("Not a valid URI IP literal: '%s'", hostAddr);
        }
    
        return addr;
      }
    
      private static @Nullable InetAddress forUriStringOrNull(String hostAddr, boolean parseScope) {
        checkNotNull(hostAddr);
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 19 18:53:45 GMT 2026
    - 47.7K bytes
    - Click Count (0)
Back to Top