Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for topPrivateDomain (0.16 sec)

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

       * controls.
       *
       * @throws IllegalStateException if this domain does not end with a public suffix
       * @since 6.0
       */
      public InternetDomainName topPrivateDomain() {
        if (isTopPrivateDomain()) {
          return this;
        }
        checkState(isUnderPublicSuffix(), "Not under a public suffix: %s", name);
        return ancestor(publicSuffixIndex() - 1);
      }
    
      /**
    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