Uses of Class
io.netty5.resolver.HostsFileEntriesProvider
-
Packages that use HostsFileEntriesProvider Package Description io.netty5.resolver Resolves an arbitrary string that represents the name of an endpoint into an address. -
-
Uses of HostsFileEntriesProvider in io.netty5.resolver
Methods in io.netty5.resolver that return HostsFileEntriesProvider Modifier and Type Method Description HostsFileEntriesProvider
HostsFileEntriesProvider.Parser. parse()
Parses the hosts file at standard OS location using the system defaultCharset
for decoding.HostsFileEntriesProvider
HostsFileEntriesProvider.Parser. parse(File file, Charset... charsets)
Parses the provided hosts file using the givenCharset
s one after another until parse something or none is left.HostsFileEntriesProvider
HostsFileEntriesProvider.Parser. parse(Reader reader)
Performs the parsing operation using the provided reader of hosts file format.HostsFileEntriesProvider
HostsFileEntriesProvider.Parser. parse(Charset... charsets)
Parses the hosts file at standard OS location using the givenCharset
s one after another until parse something or none is left.HostsFileEntriesProvider
HostsFileEntriesProvider.Parser. parseSilently()
Parses the hosts file at standard OS location using the system defaultCharset
for decoding.HostsFileEntriesProvider
HostsFileEntriesProvider.Parser. parseSilently(File file, Charset... charsets)
Parses the provided hosts file using the givenCharset
s one after another until parse something or none is left.HostsFileEntriesProvider
HostsFileEntriesProvider.Parser. parseSilently(Charset... charsets)
Parses the hosts file at standard OS location using the givenCharset
s one after another until parse something or none is left.
-