Package crawlercommons.domains
Class EffectiveTldFinder.EffectiveTLD
- java.lang.Object
- 
- crawlercommons.domains.EffectiveTldFinder.EffectiveTLD
 
- 
- Enclosing class:
- EffectiveTldFinder
 
 public static class EffectiveTldFinder.EffectiveTLD extends Object EffectiveTLD objects hold one line of the public suffix list:- the suffix (com,co.uk, etc.)
- for IDN suffixes: both the ASCII and IDN variant
 (xn--p1aiandрф)
- and the properties required to parse host/domain names given in the public suffix list (wildcard suffix, exception, in private domain section)
 
- 
- 
Constructor SummaryConstructors Constructor Description EffectiveTLD(String line, boolean isPrivateDomain)Parse one non-empty, non-comment line in the public suffix list and hold the public suffix and its properties in the created object.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetDomain()Set<String>getNameVariants()Generate name variants caused by Internationalized Domain Names: every IDN part of a eTLD can be replaced by its punycoded ASCII variant.booleanisException()booleanisWild()StringtoString()
 
- 
- 
- 
Constructor Detail- 
EffectiveTLDpublic EffectiveTLD(String line, boolean isPrivateDomain) throws IllegalArgumentException Parse one non-empty, non-comment line in the public suffix list and hold the public suffix and its properties in the created object.- Parameters:
- line- non-empty, non-comment line in the public suffix list
- isPrivateDomain- whether line is in the section of "PRIVATE DOMAINS" of the public suffix list
- Throws:
- IllegalArgumentException- if the input line contains non-ASCII Unicode characters prohibited in IDNs, cf.- IDN.toASCII(String)
 
 
- 
 - 
Method Detail- 
getNameVariantspublic Set<String> getNameVariants() Generate name variants caused by Internationalized Domain Names: every IDN part of a eTLD can be replaced by its punycoded ASCII variant. For two-part IDN eTLDs this will generate 4 variants.- Returns:
- set of variant names
 
 - 
getDomainpublic String getDomain() 
 - 
isWildpublic boolean isWild() 
 - 
isExceptionpublic boolean isException() 
 
- 
 
-