Package oshi.hardware
Interface Baseboard
-
- All Known Implementing Classes:
AbstractBaseboard
,AixBaseboard
,LinuxBaseboard
,MacBaseboard
,UnixBaseboard
,WindowsBaseboard
@Immutable public interface Baseboard
The Baseboard represents the system board, also called motherboard, logic board, etc.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getManufacturer()
Get the baseboard manufacturer.java.lang.String
getModel()
Get the baseboard model.java.lang.String
getSerialNumber()
Get the baseboard serial number.java.lang.String
getVersion()
Get the baseboard version.
-
-
-
Method Detail
-
getManufacturer
java.lang.String getManufacturer()
Get the baseboard manufacturer.- Returns:
- The manufacturer.
-
getModel
java.lang.String getModel()
Get the baseboard model.- Returns:
- The model.
-
getVersion
java.lang.String getVersion()
Get the baseboard version.- Returns:
- The version.
-
getSerialNumber
java.lang.String getSerialNumber()
Get the baseboard serial number.- Returns:
- The serial number.
-
-