| public final class java.net NetworkInterface
|
Java SE 6 |
| since | 1.4 |
| Methods | |||||||
|---|---|---|---|---|---|---|---|
| public boolean | equals(Object obj) Compares this object against the specified object. The result is true if and only if the argument is
not null and it represents the same NetworkInterface
as this object.
Two instances of
| ||||||
| public int | hashCode() | ||||||
| public boolean | supportsMulticast() throws SocketException Returns whether a network interface supports multicasting or not.
| ||||||
| public String | toString() | ||||||
| Properties | |||||||||
|---|---|---|---|---|---|---|---|---|---|
| public static NetworkInterface | getByInetAddress(InetAddress addr) throws SocketException Convenience method to search for a network interface that has the specified Internet Protocol (IP) address bound to it. If the specified IP address is bound to multiple network interfaces it is not defined which network interface is returned.
| ||||||||
| public static NetworkInterface | getByName(String name) throws SocketException Searches for the network interface with the specified name.
| ||||||||
| public String | getDisplayName() Get the display name of this network interface. A display name is a human readable String describing the network device.
| ||||||||
| public byte[] | getHardwareAddress() throws SocketException Returns the hardware address (usually MAC) of the interface if it has one and if it can be accessed given the current privileges.
| ||||||||
| public Enumeration | getInetAddresses() Convenience method to return an Enumeration with all or a subset of the InetAddresses bound to this network interface.
If there is a security manager, its
| ||||||||
| public List | getInterfaceAddresses() Get a List of all or a subset of the InterfaceAddresses
of this network interface.
If there is a security manager, its
| ||||||||
| public boolean | isLoopback() throws SocketException Returns whether a network interface is a loopback interface.
| ||||||||
| public int | getMTU() throws SocketException Returns the Maximum Transmission Unit (MTU) of this interface.
| ||||||||
| public String | getName() Get the name of this network interface.
| ||||||||
| public static Enumeration | getNetworkInterfaces() throws SocketException Returns all the interfaces on this machine. Returns null if no network interfaces could be found on this machine. NOTE: can use getNetworkInterfaces()+getInetAddresses() to obtain all IP addresses for this node
| ||||||||
| public NetworkInterface | getParent() Returns the parent NetworkInterface of this interface if this is a subinterface, or null if it is a physical
(non virtual) interface or has no parent.
| ||||||||
| public boolean | isPointToPoint() throws SocketException Returns whether a network interface is a point to point interface. A typical point to point interface would be a PPP connection through a modem.
| ||||||||
| public Enumeration | getSubInterfaces() Get an Enumeration with all the subinterfaces (also known as virtual interfaces) attached to this network interface. For instance eth0:1 will be a subinterface to eth0.
| ||||||||
| public boolean | isUp() throws SocketException Returns whether a network interface is up and running.
| ||||||||
| public boolean | isVirtual() Returns whether this interface is a virtual interface (also called subinterface). Virtual interfaces are, on some systems, interfaces created as a child of a physical interface and given different settings (like address or MTU). Usually the name of the interface will the name of the parent followed by a colon (:) and a number identifying the child since there can be several virtual interfaces attached to a single physical interface.
| ||||||||
| About DocWeb · Bundles · Export · Export All | Top 10 · Statistics · Login |
| About Sun · Contact · Privacy · Terms of Use · Trademarks | Java SE 6 · Copyright © 1994-2009 Sun Microsystems, Inc.All rights reserved. Use is subject to license terms |
![]() |
![]() |
|