Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ipStringToBytes (0.52 sec)

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

       */
      public static boolean isInetAddress(String ipString) {
        return ipStringToBytes(ipString, null) != null;
      }
    
      private static final class Scope {
        private String scope;
      }
    
      /** Returns {@code null} if unable to parse into a {@code byte[]}. */
      private static byte @Nullable [] ipStringToBytes(String ipStringParam, @Nullable Scope scope) {
        String ipString = ipStringParam;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Feb 19 21:24:11 UTC 2025
    - 47.4K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/net/InetAddresses.java

       */
      public static boolean isInetAddress(String ipString) {
        return ipStringToBytes(ipString, null) != null;
      }
    
      private static final class Scope {
        private String scope;
      }
    
      /** Returns {@code null} if unable to parse into a {@code byte[]}. */
      private static byte @Nullable [] ipStringToBytes(String ipStringParam, @Nullable Scope scope) {
        String ipString = ipStringParam;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Feb 19 21:24:11 UTC 2025
    - 47.4K bytes
    - Viewed (0)
Back to top