Skip to content

Commit 7ae62f7

Browse files
committedSep 2, 2024·
8283779
1 parent 2abe2ff commit 7ae62f7

File tree

1 file changed

+63
-4
lines changed

1 file changed

+63
-4
lines changed
 

‎src/java.base/share/classes/java/net/NetworkInterface.java

+63-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2000, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2000, 2024, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -97,6 +97,11 @@ public String getName() {
9797
* {@link NetPermission}("getNetworkInformation") permission, then all
9898
* InetAddresses are returned.
9999
*
100+
* @implNote
101+
* The returned array contains all or a subset of the InetAddresses that were
102+
* bound to the interface at the time the {@linkplain #getNetworkInterfaces()
103+
* interface configuration was read}
104+
*
100105
* @return an Enumeration object with all or a subset of the InetAddresses
101106
* bound to this network interface
102107
* @see #inetAddresses()
@@ -116,6 +121,11 @@ public Enumeration<InetAddress> getInetAddresses() {
116121
* {@link NetPermission}("getNetworkInformation") permission, then all
117122
* InetAddresses are returned.
118123
*
124+
* @implNote
125+
* The stream contains all or a subset of the InetAddresses that were
126+
* bound to the interface at the time the {@linkplain #getNetworkInterfaces()
127+
* interface configuration was read}
128+
*
119129
* @return a Stream object with all or a subset of the InetAddresses
120130
* bound to this network interface
121131
* @since 9
@@ -249,6 +259,16 @@ public String getDisplayName() {
249259
/**
250260
* Searches for the network interface with the specified name.
251261
*
262+
* @apiNote
263+
* The returned interface instance may reflect a snapshot of the
264+
* configuration taken at the time the instance is created.
265+
* To see updates to the configuration may, or may not, require
266+
* obtaining a new instance of the interface.
267+
* In particular, there is no guarantee that the same interface will be
268+
* found at the same index, or that the same network addresses will be
269+
* bound to the interface, if the network configuration of the system
270+
* has changed.
271+
*
252272
* @param name
253273
* The name of the network interface.
254274
*
@@ -271,6 +291,16 @@ public static NetworkInterface getByName(String name) throws SocketException {
271291
/**
272292
* Get a network interface given its index.
273293
*
294+
* @apiNote
295+
* The returned interface instance may reflect a snapshot of the
296+
* configuration taken at the time the instance is created.
297+
* To see updates to the configuration may, or may not, require
298+
* obtaining a new instance of the interface.
299+
* In particular, there is no guarantee that the same interface will be
300+
* found at the same index, or that the same network addresses will be
301+
* bound to the interface, if the network configuration of the system
302+
* has changed.
303+
*
274304
* @param index an integer, the index of the interface
275305
* @return the NetworkInterface obtained from its index, or {@code null} if
276306
* there is no interface with such an index on the system
@@ -294,6 +324,16 @@ public static NetworkInterface getByIndex(int index) throws SocketException {
294324
* interfaces it is not defined which network interface is
295325
* returned.
296326
*
327+
* @apiNote
328+
* The returned interface instance may reflect a snapshot of the
329+
* configuration taken at the time the instance is created.
330+
* To see updates to the configuration may, or may not, require
331+
* obtaining a new instance of the interface.
332+
* In particular, there is no guarantee that the same interface will be
333+
* found at the same index, or that the same network addresses will be
334+
* bound to the interface, if the network configuration of the system
335+
* has changed.
336+
*
297337
* @param addr
298338
* The {@code InetAddress} to search with.
299339
*
@@ -334,8 +374,18 @@ public static NetworkInterface getByInetAddress(InetAddress addr) throws SocketE
334374
* a loopback interface that only supports communication between entities on
335375
* this machine.
336376
*
337-
* @apiNote this method can be used in combination with
338-
* {@link #getInetAddresses()} to obtain all IP addresses for this node
377+
* @apiNote
378+
* This method can be used in combination with
379+
* {@link #getInetAddresses()} to obtain all IP addresses for this node.
380+
* <p>
381+
* The returned interface instances may reflect a snapshot of the
382+
* configuration taken at the time the instance is created.
383+
* To see updates to the configuration may, or may not, require
384+
* obtaining new instances of the interfaces.
385+
* In particular, there is no guarantee that the same interface will be
386+
* found at the same index, or that the same network addresses will be
387+
* bound to the interface, if the network configuration of the system
388+
* has changed.
339389
*
340390
* @return an Enumeration of NetworkInterfaces found on this machine
341391
* @throws SocketException if an I/O error occurs,
@@ -359,13 +409,22 @@ public static Enumeration<NetworkInterface> getNetworkInterfaces()
359409
* loopback interface that only supports communication between entities on
360410
* this machine.
361411
*
362-
* @apiNote this method can be used in combination with
412+
* @apiNote This method can be used in combination with
363413
* {@link #inetAddresses()}} to obtain a stream of all IP addresses for
364414
* this node, for example:
365415
* <pre> {@code
366416
* Stream<InetAddress> addrs = NetworkInterface.networkInterfaces()
367417
* .flatMap(NetworkInterface::inetAddresses);
368418
* }</pre>
419+
* <p>
420+
* The returned interface instances may reflect a snapshot of the
421+
* configuration taken at the time the instance is created.
422+
* To see updates to the configuration may, or may not, require
423+
* obtaining new instances of the interfaces.
424+
* In particular, there is no guarantee that the same interface will be
425+
* found at the same index, or that the same network addresses will be
426+
* bound to the interface, if the network configuration of the system
427+
* has changed.
369428
*
370429
* @return a Stream of NetworkInterfaces found on this machine
371430
* @throws SocketException if an I/O error occurs,

0 commit comments

Comments
 (0)