Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for publicSuffixIndex (0.21 sec)

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

      public boolean hasPublicSuffix() {
        return publicSuffixIndex() != NO_SUFFIX_FOUND;
      }
    
      /**
       * Returns the {@linkplain #isPublicSuffix() public suffix} portion of the domain name, or {@code
       * null} if no public suffix is present.
       *
       * @since 6.0
       */
      @CheckForNull
      public InternetDomainName publicSuffix() {
        return hasPublicSuffix() ? ancestor(publicSuffixIndex()) : null;
      }
    
      /**
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Feb 05 20:47:23 GMT 2024
    - 28K bytes
    - Viewed (0)
Back to top