java.lang.Object
java.net.spi.InetAddressResolver.LookupPolicy
- Enclosing interface:
InetAddressResolver
A
LookupPolicy
object describes characteristics that can be applied to a lookup operation.
In particular, it is used to specify the ordering and which filtering should be performed when
looking up host addresses.
The default platform-wide lookup policy is constructed by consulting System Properties which affect how IPv4 and IPv6 addresses are returned.
- Since:
- 18
-
Field Summary
Modifier and TypeFieldDescriptionstatic final int
Characteristic value signifying if IPv4 addresses need to be queried during lookup.static final int
Characteristic value signifying if IPv4 addresses should be returned first byInetAddressResolver
.static final int
Characteristic value signifying if IPv6 addresses need to be queried during lookup.static final int
Characteristic value signifying if IPv6 addresses should be returned first byInetAddressResolver
. -
Method Summary
Modifier and TypeMethodDescriptionint
Returns the set of characteristics of this lookup policy.of
(int characteristics) This factory method creates aLookupPolicy
instance with the givencharacteristics
value.
-
Field Details
-
IPV4
Characteristic value signifying if IPv4 addresses need to be queried during lookup.- See Also:
-
IPV6
Characteristic value signifying if IPv6 addresses need to be queried during lookup.- See Also:
-
IPV4_FIRST
Characteristic value signifying if IPv4 addresses should be returned first byInetAddressResolver
.- See Also:
-
IPV6_FIRST
Characteristic value signifying if IPv6 addresses should be returned first byInetAddressResolver
.- See Also:
-
-
Method Details
-
of
This factory method creates aLookupPolicy
instance with the givencharacteristics
value.The
characteristics
value is an integer bit mask which defines parameters of a forward lookup operation. These parameters define at least:- the family type of the returned addresses
- the order in which a resolver implementation should return its results
To request addresses of specific family types the following bit masks can be combined:
It is an error if neitherIPV4
orIPV6
are set.To request a specific ordering of the results:
IPV4_FIRST
: return IPv4 addresses before any IPv6 addressIPV6_FIRST
: return IPv6 addresses before any IPv4 address
If neitherIPV4_FIRST
orIPV6_FIRST
are set it implies "system" order of addresses. It is an error to request bothIPV4_FIRST
andIPV6_FIRST
.- Parameters:
characteristics
- a value which represents the set of lookup characteristics- Returns:
- an instance of
InetAddressResolver.LookupPolicy
- Throws:
IllegalArgumentException
- if an illegal characteristics bit mask is provided- See Also:
-
characteristics
public int characteristics()Returns the set of characteristics of this lookup policy.- Returns:
- a characteristics value
- See Also:
-