Package oshi.hardware
Interface HardwareAbstractionLayer
-
- All Superinterfaces:
java.io.Serializable
- All Known Implementing Classes:
AbstractHardwareAbstractionLayer
,FreeBsdHardwareAbstractionLayer
,LinuxHardwareAbstractionLayer
,MacHardwareAbstractionLayer
,SolarisHardwareAbstractionLayer
,WindowsHardwareAbstractionLayer
public interface HardwareAbstractionLayer extends java.io.Serializable
A hardware abstraction layer. Provides access to hardware items such as processors, memory, battery, and disks.- Author:
- dblock[at]dblock[dot]org
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ComputerSystem
getComputerSystem()
Instantiates aComputerSystem
object.HWDiskStore[]
getDiskStores()
Instantiates an array ofHWDiskStore
objects, representing a physical hard disk or other similar storage deviceDisplay[]
getDisplays()
Instantiates an array ofDisplay
objects, representing monitors or other video output devices.GlobalMemory
getMemory()
Instantiates aGlobalMemory
object.NetworkIF[]
getNetworkIFs()
Instantiates an array ofNetworkIF
objects, representing a network interfacePowerSource[]
getPowerSources()
Instantiates an array ofPowerSource
objects, representing batteries, etc.CentralProcessor
getProcessor()
Instantiates aCentralProcessor
object.Sensors
getSensors()
Instantiates aSensors
object, representing CPU temperature and fan speedSoundCard[]
getSoundCards()
Instantiates an array ofSoundCard
objects, representing the Sound cards.UsbDevice[]
getUsbDevices(boolean tree)
Instantiates an array ofUsbDevice
objects, representing devices connected via a usb port (including internal devices).
-
-
-
Method Detail
-
getComputerSystem
ComputerSystem getComputerSystem()
Instantiates aComputerSystem
object. This represents the physical hardware, including components such as BIOS/Firmware and a motherboard, logic board, etc.- Returns:
- a
ComputerSystem
object.
-
getProcessor
CentralProcessor getProcessor()
Instantiates aCentralProcessor
object. This represents one or more Logical CPUs.- Returns:
- A
CentralProcessor
object.
-
getMemory
GlobalMemory getMemory()
Instantiates aGlobalMemory
object.- Returns:
- A memory object.
-
getPowerSources
PowerSource[] getPowerSources()
Instantiates an array ofPowerSource
objects, representing batteries, etc.- Returns:
- An array of PowerSource objects or an empty array if none are present.
-
getDiskStores
HWDiskStore[] getDiskStores()
Instantiates an array ofHWDiskStore
objects, representing a physical hard disk or other similar storage device- Returns:
- An array of HWDiskStore objects or an empty array if none are present.
-
getNetworkIFs
NetworkIF[] getNetworkIFs()
Instantiates an array ofNetworkIF
objects, representing a network interface- Returns:
- An array of HWNetworkStore objects or an empty array if none are present.
-
getDisplays
Display[] getDisplays()
Instantiates an array ofDisplay
objects, representing monitors or other video output devices.- Returns:
- An array of Display objects or an empty array if none are present.
-
getSensors
Sensors getSensors()
Instantiates aSensors
object, representing CPU temperature and fan speed- Returns:
- A Sensors object
-
getUsbDevices
UsbDevice[] getUsbDevices(boolean tree)
Instantiates an array ofUsbDevice
objects, representing devices connected via a usb port (including internal devices). If the value of tree is true, the top level devices returned from this method are the USB Controllers; connected hubs and devices in its device tree share that controller's bandwidth. If the value of tree is false, USB devices (not controllers) are listed in a single flat array.- Parameters:
tree
- WHether to display devices in a nested tree format from their controllers- Returns:
- An array of UsbDevice objects representing (optionally) the USB Controllers and devices connected to them, or an empty array if none are present
-
-