Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for forUriStringOrNull (0.53 sec)

  1. 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;
      }
    
      @CheckForNull
      private static InetAddress forUriStringOrNull(String hostAddr, boolean parseScope) {
        checkNotNull(hostAddr);
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:26:48 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  2. 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;
      }
    
      @CheckForNull
      private static InetAddress forUriStringOrNull(String hostAddr, boolean parseScope) {
        checkNotNull(hostAddr);
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:26:48 UTC 2024
    - 47.1K bytes
    - Viewed (0)
Back to top