Creates and returns a new InternetDomainName by prepending the argument and a dot to the current name. For example, InternetDomainName.from("foo.com").child("www.bar") returns a new InternetDomainName with the value www.bar.foo.com. Only lenient validation is performe
(String leftParts)
| 440 | |
| 441 | |
| 442 | public InternetDomainName child(String leftParts) { |
| 443 | return from(checkNotNull(leftParts) + "." + name); |
| 444 | } |
| 445 | |
| 446 | /** |
| 447 | * Indicates whether the argument is a syntactically valid domain name using lenient validation. |
nothing calls this directly
no test coverage detected