Package | Description |
---|---|
io.netty.resolver |
Resolves an arbitrary string that represents the name of an endpoint into an address.
|
Modifier and Type | Method and Description |
---|---|
HostsFileEntriesProvider |
HostsFileEntriesProvider.Parser.parse()
Parses the hosts file at standard OS location using the system default
Charset for decoding. |
HostsFileEntriesProvider |
HostsFileEntriesProvider.Parser.parse(Charset... charsets)
Parses the hosts file at standard OS location using the given
Charset s one after another until
parse something or none is left. |
HostsFileEntriesProvider |
HostsFileEntriesProvider.Parser.parse(File file,
Charset... charsets)
Parses the provided hosts file using the given
Charset 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.parseSilently()
Parses the hosts file at standard OS location using the system default
Charset for decoding. |
HostsFileEntriesProvider |
HostsFileEntriesProvider.Parser.parseSilently(Charset... charsets)
Parses the hosts file at standard OS location using the given
Charset s one after another until
parse something or none is left. |
HostsFileEntriesProvider |
HostsFileEntriesProvider.Parser.parseSilently(File file,
Charset... charsets)
Parses the provided hosts file using the given
Charset s one after another until
parse something or none is left. |
Copyright © 2008–2024 The Netty Project. All rights reserved.