Uses of Class
io.netty5.resolver.HostsFileEntries
-
Packages that use HostsFileEntries Package Description io.netty5.resolver Resolves an arbitrary string that represents the name of an endpoint into an address. -
-
Uses of HostsFileEntries in io.netty5.resolver
Methods in io.netty5.resolver that return HostsFileEntries Modifier and Type Method Description static HostsFileEntries
HostsFileParser. parse()
Parse hosts file at standard OS location using the system defaultCharset
for decoding.static HostsFileEntries
HostsFileParser. parse(File file)
Parse a hosts file using the system defaultCharset
for decoding.static HostsFileEntries
HostsFileParser. parse(File file, Charset... charsets)
Parse a hosts file.static HostsFileEntries
HostsFileParser. parse(Reader reader)
Parse a reader of hosts file format.static HostsFileEntries
HostsFileParser. parseSilently()
Parse hosts file at standard OS location using the systems defaultCharset
for decoding.static HostsFileEntries
HostsFileParser. parseSilently(Charset... charsets)
Parse hosts file at standard OS location using the givenCharset
s one after each other until we were able to parse something or none is left.
-