public static enum DataSegmentFactory.DataSegmentFormat extends Enum<DataSegmentFactory.DataSegmentFormat>
| Enum Constant and Description |
|---|
BINARY
The data segment has to be interpreted as binary data.
|
NONE
There is no data segment allowed.
|
SCSI_RESPONSE
The data segment has to be interpreted as a SCSI response data
segment.
|
TEXT
The data segment has to be interpreted as text (login parameters).
|
| Modifier and Type | Method and Description |
|---|---|
static DataSegmentFactory.DataSegmentFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataSegmentFactory.DataSegmentFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataSegmentFactory.DataSegmentFormat TEXT
public static final DataSegmentFactory.DataSegmentFormat BINARY
public static final DataSegmentFactory.DataSegmentFormat SCSI_RESPONSE
public static final DataSegmentFactory.DataSegmentFormat NONE
public static DataSegmentFactory.DataSegmentFormat[] values()
for (DataSegmentFactory.DataSegmentFormat c : DataSegmentFactory.DataSegmentFormat.values()) System.out.println(c);
public static DataSegmentFactory.DataSegmentFormat 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 nullCopyright © 2013 University of Konstanz, Distributed Systems Group. All Rights Reserved.