Package oshi.hardware.common
Class AbstractUsbDevice
java.lang.Object
oshi.hardware.common.AbstractUsbDevice
- Direct Known Subclasses:
AixUsbDevice,FreeBsdUsbDevice,LinuxUsbDevice,MacUsbDevice,SolarisUsbDevice,WindowsUsbDevice
@Immutable public abstract class AbstractUsbDevice extends java.lang.Object implements UsbDevice
A USB device
-
Constructor Summary
Constructors Constructor Description AbstractUsbDevice(java.lang.String name, java.lang.String vendor, java.lang.String vendorId, java.lang.String productId, java.lang.String serialNumber, java.lang.String uniqueDeviceId, java.util.List<UsbDevice> connectedDevices) -
Method Summary
Modifier and Type Method Description intcompareTo(UsbDevice usb)java.util.List<UsbDevice>getConnectedDevices()Other devices connected to this hubjava.lang.StringgetName()Name of the USB devicejava.lang.StringgetProductId()Product ID of the USB devicejava.lang.StringgetSerialNumber()Serial number of the USB devicejava.lang.StringgetUniqueDeviceId()A Unique Device ID of the USB device, such as the PnPDeviceID (Windows), Device Node Path (Linux), Registry Entry ID (macOS), or Device Node number (Unix)java.lang.StringgetVendor()Vendor that manufactured the USB devicejava.lang.StringgetVendorId()ID of the vendor that manufactured the USB devicejava.lang.StringtoString()
-
Constructor Details
-
AbstractUsbDevice
public AbstractUsbDevice(java.lang.String name, java.lang.String vendor, java.lang.String vendorId, java.lang.String productId, java.lang.String serialNumber, java.lang.String uniqueDeviceId, java.util.List<UsbDevice> connectedDevices)
-
-
Method Details
-
getName
public java.lang.String getName()Description copied from interface:UsbDeviceName of the USB device -
getVendor
public java.lang.String getVendor()Description copied from interface:UsbDeviceVendor that manufactured the USB device -
getVendorId
public java.lang.String getVendorId()Description copied from interface:UsbDeviceID of the vendor that manufactured the USB device- Specified by:
getVendorIdin interfaceUsbDevice- Returns:
- The vendor ID, a 4-digit hex string
-
getProductId
public java.lang.String getProductId()Description copied from interface:UsbDeviceProduct ID of the USB device- Specified by:
getProductIdin interfaceUsbDevice- Returns:
- The product ID, a 4-digit hex string
-
getSerialNumber
public java.lang.String getSerialNumber()Description copied from interface:UsbDeviceSerial number of the USB device- Specified by:
getSerialNumberin interfaceUsbDevice- Returns:
- The serial number, if known
-
getUniqueDeviceId
public java.lang.String getUniqueDeviceId()Description copied from interface:UsbDeviceA Unique Device ID of the USB device, such as the PnPDeviceID (Windows), Device Node Path (Linux), Registry Entry ID (macOS), or Device Node number (Unix)- Specified by:
getUniqueDeviceIdin interfaceUsbDevice- Returns:
- The Unique Device ID
-
getConnectedDevices
Description copied from interface:UsbDeviceOther devices connected to this hub- Specified by:
getConnectedDevicesin interfaceUsbDevice- Returns:
- An
UnmodifiableListof other devices connected to this hub, if any, or an empty list if none
-
compareTo
- Specified by:
compareToin interfacejava.lang.Comparable<UsbDevice>
-
toString
public java.lang.String toString()- Overrides:
toStringin classjava.lang.Object
-