Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for fromScope (0.18 sec)

  1. android/guava/src/com/google/thirdparty/publicsuffix/PublicSuffixType.java

        return leafNodeCode;
      }
    
      char getInnerNodeCode() {
        return innerNodeCode;
      }
    
      /** Returns a PublicSuffixType of the right type according to the given code */
      static PublicSuffixType fromCode(char code) {
        for (PublicSuffixType value : values()) {
          if (value.getInnerNodeCode() == code || value.getLeafNodeCode() == code) {
            return value;
          }
        }
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Dec 16 19:54:45 GMT 2020
    - 2K bytes
    - Viewed (0)
Back to top