1
1
/*
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.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
@@ -97,6 +97,11 @@ public String getName() {
97
97
* {@link NetPermission}("getNetworkInformation") permission, then all
98
98
* InetAddresses are returned.
99
99
*
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
+ *
100
105
* @return an Enumeration object with all or a subset of the InetAddresses
101
106
* bound to this network interface
102
107
* @see #inetAddresses()
@@ -116,6 +121,11 @@ public Enumeration<InetAddress> getInetAddresses() {
116
121
* {@link NetPermission}("getNetworkInformation") permission, then all
117
122
* InetAddresses are returned.
118
123
*
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
+ *
119
129
* @return a Stream object with all or a subset of the InetAddresses
120
130
* bound to this network interface
121
131
* @since 9
@@ -249,6 +259,16 @@ public String getDisplayName() {
249
259
/**
250
260
* Searches for the network interface with the specified name.
251
261
*
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
+ *
252
272
* @param name
253
273
* The name of the network interface.
254
274
*
@@ -271,6 +291,16 @@ public static NetworkInterface getByName(String name) throws SocketException {
271
291
/**
272
292
* Get a network interface given its index.
273
293
*
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
+ *
274
304
* @param index an integer, the index of the interface
275
305
* @return the NetworkInterface obtained from its index, or {@code null} if
276
306
* there is no interface with such an index on the system
@@ -294,6 +324,16 @@ public static NetworkInterface getByIndex(int index) throws SocketException {
294
324
* interfaces it is not defined which network interface is
295
325
* returned.
296
326
*
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
+ *
297
337
* @param addr
298
338
* The {@code InetAddress} to search with.
299
339
*
@@ -334,8 +374,18 @@ public static NetworkInterface getByInetAddress(InetAddress addr) throws SocketE
334
374
* a loopback interface that only supports communication between entities on
335
375
* this machine.
336
376
*
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.
339
389
*
340
390
* @return an Enumeration of NetworkInterfaces found on this machine
341
391
* @throws SocketException if an I/O error occurs,
@@ -359,13 +409,22 @@ public static Enumeration<NetworkInterface> getNetworkInterfaces()
359
409
* loopback interface that only supports communication between entities on
360
410
* this machine.
361
411
*
362
- * @apiNote this method can be used in combination with
412
+ * @apiNote This method can be used in combination with
363
413
* {@link #inetAddresses()}} to obtain a stream of all IP addresses for
364
414
* this node, for example:
365
415
* <pre> {@code
366
416
* Stream<InetAddress> addrs = NetworkInterface.networkInterfaces()
367
417
* .flatMap(NetworkInterface::inetAddresses);
368
418
* }</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.
369
428
*
370
429
* @return a Stream of NetworkInterfaces found on this machine
371
430
* @throws SocketException if an I/O error occurs,
0 commit comments