-
- All Implemented Interfaces:
public final class ScsiInquiryResponseThis class represents the response of a SCSI Inquiry. It holds various information about the mass storage device.
This response is received in the data phase.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public classScsiInquiryResponse.Companion
-
Field Summary
Fields Modifier and Type Field Description private ByteperipheralQualifierprivate ByteperipheralDeviceTypeprivate BooleanisRemovableMediaprivate BytespcVersionprivate ByteresponseDataFormat
-
Method Summary
Modifier and Type Method Description final BytegetPeripheralQualifier()final UnitsetPeripheralQualifier(Byte peripheralQualifier)final BytegetPeripheralDeviceType()The type of the mass storage device. final UnitsetPeripheralDeviceType(Byte peripheralDeviceType)final BooleangetIsRemovableMedia()final UnitsetIsRemovableMedia(Boolean isRemovableMedia)final BytegetSpcVersion()This method returns the version of the SCSI Primary Commands (SPC) standard the device supports. final UnitsetSpcVersion(Byte spcVersion)final BytegetResponseDataFormat()final UnitsetResponseDataFormat(Byte responseDataFormat)StringtoString()-
-
Method Detail
-
getPeripheralQualifier
final Byte getPeripheralQualifier()
-
setPeripheralQualifier
final Unit setPeripheralQualifier(Byte peripheralQualifier)
-
getPeripheralDeviceType
final Byte getPeripheralDeviceType()
The type of the mass storage device.
-
setPeripheralDeviceType
final Unit setPeripheralDeviceType(Byte peripheralDeviceType)
-
getIsRemovableMedia
final Boolean getIsRemovableMedia()
-
setIsRemovableMedia
final Unit setIsRemovableMedia(Boolean isRemovableMedia)
-
getSpcVersion
final Byte getSpcVersion()
This method returns the version of the SCSI Primary Commands (SPC) standard the device supports.
-
setSpcVersion
final Unit setSpcVersion(Byte spcVersion)
-
getResponseDataFormat
final Byte getResponseDataFormat()
-
setResponseDataFormat
final Unit setResponseDataFormat(Byte responseDataFormat)
-
-
-
-