public static enum SmfRecordReader.RecordFormat extends Enum<SmfRecordReader.RecordFormat>
Enum Constant and Description |
---|
AUTODETECT
SmfRecordReader will try to detect the format from the data in the stream
|
U
Data has been downloaded as RECFM=U and data is still in blocked
VB or VBS format, including Block Descriptor Words (BDW).
|
V
Data has been downloaded as variable length records including the
Record Descriptor Word (RDW).
|
Modifier and Type | Method and Description |
---|---|
static SmfRecordReader.RecordFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SmfRecordReader.RecordFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SmfRecordReader.RecordFormat AUTODETECT
public static final SmfRecordReader.RecordFormat U
public static final SmfRecordReader.RecordFormat V
public static SmfRecordReader.RecordFormat[] values()
for (SmfRecordReader.RecordFormat c : SmfRecordReader.RecordFormat.values()) System.out.println(c);
public static SmfRecordReader.RecordFormat 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 © 2020 Black Hill Software Pty Ltd. All rights reserved.