Package oshi.hardware
Interface Firmware
- All Known Implementing Classes:
AbstractFirmware
@Immutable public interface Firmware
The Firmware represents the low level BIOS or equivalent.
-
Method Summary
Modifier and Type Method Description java.lang.StringgetDescription()Get the firmware description.java.lang.StringgetManufacturer()Get the firmware manufacturer.java.lang.StringgetName()Get the firmware name.java.lang.StringgetReleaseDate()Get the firmware release date.java.lang.StringgetVersion()Get the firmware version.
-
Method Details
-
getManufacturer
java.lang.String getManufacturer()Get the firmware manufacturer.- Returns:
- the manufacturer
-
getName
java.lang.String getName()Get the firmware name.- Returns:
- the name
-
getDescription
java.lang.String getDescription()Get the firmware description.- Returns:
- the description
-
getVersion
java.lang.String getVersion()Get the firmware version.- Returns:
- the version
-
getReleaseDate
java.lang.String getReleaseDate()Get the firmware release date.- Returns:
- The release date.
-