Interface NetworkIF
- All Known Implementing Classes:
AbstractNetworkIF,AixNetworkIF,FreeBsdNetworkIF,LinuxNetworkIF,MacNetworkIF,SolarisNetworkIF,WindowsNetworkIF
@ThreadSafe public interface NetworkIF
Thread safe for the designed use of retrieving the most recent data. Users
should be aware that the updateAttributes() method may update
attributes, including the time stamp, and should externally synchronize such
usage to ensure consistent calculations.
-
Method Summary
Modifier and Type Method Description longgetBytesRecv()Getter for the fieldbytesRecv.longgetBytesSent()Getter for the fieldbytesSent.longgetCollisions()Getter for the fieldcollisions.java.lang.StringgetDisplayName()Interface description.intgetIfType()(Windows, macOS) The NDIS Interface Type.longgetInDrops()Getter for the fieldinDrops.longgetInErrors()Getter for the fieldinErrors.java.lang.String[]getIPv4addr()The Internet Protocol (IP) v4 address.java.lang.String[]getIPv6addr()The Internet Protocol (IP) v6 address.java.lang.StringgetMacaddr()The Media Access Control (MAC) address.intgetMTU()The interface Maximum Transmission Unit (MTU).java.lang.StringgetName()Interface name.intgetNdisPhysicalMediumType()(Windows Vista and higher only) The NDIS physical medium type.longgetOutErrors()Getter for the fieldoutErrors.longgetPacketsRecv()Getter for the fieldpacketsRecv.longgetPacketsSent()Getter for the fieldpacketsSent.java.lang.Short[]getPrefixLengths()The Internet Protocol (IP) v6 address.longgetSpeed()Getter for the fieldspeed.java.lang.Short[]getSubnetMasks()The Internet Protocol (IP) v4 subnet masks.longgetTimeStamp()Getter for the fieldtimeStamp.booleanisConnectorPresent()(Windows Vista and higher) Set if a connector is present on the network interface.booleanisKnownVmMacAddr()Determines if the MAC address on this interface corresponds to a known Virtual Machine.java.net.NetworkInterfacequeryNetworkInterface()Gets theNetworkInterfaceobject.booleanupdateAttributes()Updates interface network statistics on this interface.
-
Method Details
-
queryNetworkInterface
java.net.NetworkInterface queryNetworkInterface()Gets theNetworkInterfaceobject.- Returns:
- the network interface, an instance of
NetworkInterface.
-
getName
java.lang.String getName()Interface name.- Returns:
- The interface name.
-
getDisplayName
java.lang.String getDisplayName()Interface description.- Returns:
- The description of the network interface. On some platforms, this is identical to the name.
-
getMTU
int getMTU()The interface Maximum Transmission Unit (MTU).- Returns:
- The MTU of the network interface.
This value is set when the
NetworkIFis instantiated and may not be up to date.
-
getMacaddr
java.lang.String getMacaddr()The Media Access Control (MAC) address.- Returns:
- The MAC Address.
This value is set when the
NetworkIFis instantiated and may not be up to date.
-
getIPv4addr
java.lang.String[] getIPv4addr()The Internet Protocol (IP) v4 address.- Returns:
- An array of IPv4 Addresses.
This value is set when the
NetworkIFis instantiated and may not be up to date.
-
getSubnetMasks
java.lang.Short[] getSubnetMasks()The Internet Protocol (IP) v4 subnet masks.- Returns:
- An array of IPv4 subnet mask lengths, corresponding to the IPv4
addresses from
getIPv4addr(). Ranges between 0-32.This value is set when the
NetworkIFis instantiated and may not be up to date.
-
getIPv6addr
java.lang.String[] getIPv6addr()The Internet Protocol (IP) v6 address.- Returns:
- An array of IPv6 Addresses.
This value is set when the
NetworkIFis instantiated and may not be up to date.
-
getPrefixLengths
java.lang.Short[] getPrefixLengths()The Internet Protocol (IP) v6 address.- Returns:
- The IPv6 address prefix lengths, corresponding to the IPv6 addresses
from
getIPv6addr(). Ranges between 0-128.This value is set when the
NetworkIFis instantiated and may not be up to date.
-
getIfType
int getIfType()(Windows, macOS) The NDIS Interface Type. NDIS interface types are registered with the Internet Assigned Numbers Authority (IANA), which publishes a list of interface types periodically in the Assigned Numbers RFC, or in a derivative of it that is specific to Internet network management number assignments.(Linux) ARP Protocol hardware identifiers defined in
include/uapi/linux/if_arp.h- Returns:
- the ifType
-
getNdisPhysicalMediumType
int getNdisPhysicalMediumType()(Windows Vista and higher only) The NDIS physical medium type. This member can be one of the values from theNDIS_PHYSICAL_MEDIUMenumeration type defined in theNtddndis.hheader file.- Returns:
- the ndisPhysicalMediumType
-
isConnectorPresent
boolean isConnectorPresent()(Windows Vista and higher) Set if a connector is present on the network interface.(Linux) Indicates the current physical link state of the interface.
- Returns:
trueif there is a physical network adapter (Windows) or a connected cable (Linux), false otherwise
-
getBytesRecv
long getBytesRecv()Getter for the field
bytesRecv.- Returns:
- The Bytes Received.
This value is set when the
NetworkIFis instantiated and may not be up to date. To update this value, execute theupdateAttributes()method
-
getBytesSent
long getBytesSent()Getter for the field
bytesSent.- Returns:
- The Bytes Sent.
This value is set when the
NetworkIFis instantiated and may not be up to date. To update this value, execute theupdateAttributes()method
-
getPacketsRecv
long getPacketsRecv()Getter for the field
packetsRecv.- Returns:
- The Packets Received.
This value is set when the
NetworkIFis instantiated and may not be up to date. To update this value, execute theupdateAttributes()method
-
getPacketsSent
long getPacketsSent()Getter for the field
packetsSent.- Returns:
- The Packets Sent.
This value is set when the
NetworkIFis instantiated and may not be up to date. To update this value, execute theupdateAttributes()method
-
getInErrors
long getInErrors()Getter for the field
inErrors.- Returns:
- Input Errors.
This value is set when the
NetworkIFis instantiated and may not be up to date. To update this value, execute theupdateAttributes()method
-
getOutErrors
long getOutErrors()Getter for the field
outErrors.- Returns:
- The Output Errors.
This value is set when the
NetworkIFis instantiated and may not be up to date. To update this value, execute theupdateAttributes()method
-
getInDrops
long getInDrops()Getter for the field
inDrops.- Returns:
- Incoming/Received dropped packets. On Windows, returns discarded
incoming packets.
This value is set when the
NetworkIFis instantiated and may not be up to date. To update this value, execute theupdateAttributes()method
-
getCollisions
long getCollisions()Getter for the field
collisions.- Returns:
- Packet collisions. On Windows, returns discarded outgoing packets.
This value is set when the
NetworkIFis instantiated and may not be up to date. To update this value, execute theupdateAttributes()method
-
getSpeed
long getSpeed()Getter for the field
speed.- Returns:
- The speed of the network interface in bits per second.
This value is set when the
NetworkIFis instantiated and may not be up to date. To update this value, execute theupdateAttributes()method
-
getTimeStamp
long getTimeStamp()Getter for the field
timeStamp.- Returns:
- Returns the timeStamp.
-
isKnownVmMacAddr
boolean isKnownVmMacAddr()Determines if the MAC address on this interface corresponds to a known Virtual Machine.- Returns:
trueif the MAC address corresponds to a known virtual machine.
-
updateAttributes
boolean updateAttributes()Updates interface network statistics on this interface. Statistics include packets and bytes sent and received, and interface speed.- Returns:
trueif the update was successful,falseotherwise.
-