| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| HeaderType |
|
| 0.0;0 |
| 1 | package org.jscsi.target.scsi.modeSense; | |
| 2 | ||
| 3 | /** | |
| 4 | * This enumeration is used to determine which header type a {@link ModeParameterList} should use. | |
| 5 | * | |
| 6 | * @author Andreas Ergenzinger | |
| 7 | */ | |
| 8 | 0 | public enum HeaderType { |
| 9 | /** | |
| 10 | * Header format required by responses to a <code>MODE | |
| 11 | * SENSE (6)</code> SCSI command. | |
| 12 | * | |
| 13 | * @see ModeParameterHeader6 | |
| 14 | */ | |
| 15 | 0 | MODE_PARAMETER_HEADER_6, |
| 16 | /** | |
| 17 | * Header format required by responses to a <code>MODE | |
| 18 | * SENSE (10)</code> SCSI command. | |
| 19 | * | |
| 20 | * @see ModeParameterHeader10 | |
| 21 | */ | |
| 22 | 0 | MODE_PARAMETER_HEADER_10 |
| 23 | } |