public static enum SCSIResponseParser.ServiceResponse extends Enum<SCSIResponseParser.ServiceResponse>
0x80-0xff - Vendor specific
| Enum Constant and Description |
|---|
COMMAND_COMPLETED_AT_TARGET
Command completed at target.
|
TARGET_FAILURE
Target Failure.
|
| Modifier and Type | Method and Description |
|---|---|
byte |
value()
Returns the value of this enumeration.
|
static SCSIResponseParser.ServiceResponse |
valueOf(byte value)
Returns the constant defined for the given
value. |
static SCSIResponseParser.ServiceResponse |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SCSIResponseParser.ServiceResponse[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SCSIResponseParser.ServiceResponse COMMAND_COMPLETED_AT_TARGET
public static final SCSIResponseParser.ServiceResponse TARGET_FAILURE
public static SCSIResponseParser.ServiceResponse[] values()
for (SCSIResponseParser.ServiceResponse c : SCSIResponseParser.ServiceResponse.values()) System.out.println(c);
public static SCSIResponseParser.ServiceResponse valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is nullpublic final byte value()
public static final SCSIResponseParser.ServiceResponse valueOf(byte value)
value.value - The value to search for.value. Or null, if this value
is not defined by this
enumeration.Copyright © 2013 University of Konstanz, Distributed Systems Group. All Rights Reserved.