public enum RecordType extends Enum<RecordType>
| Enum Constant and Description |
|---|
DETAIL |
DETAIL_HEADER |
DETAIL_ONLY |
DETAIL_TRAILLER |
HEADER |
TRAILLER |
| Modifier and Type | Method and Description |
|---|---|
static RecordType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RecordType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RecordType HEADER
public static final RecordType DETAIL
public static final RecordType DETAIL_ONLY
public static final RecordType DETAIL_HEADER
public static final RecordType DETAIL_TRAILLER
public static final RecordType TRAILLER
public static RecordType[] values()
for (RecordType c : RecordType.values()) System.out.println(c);
public static RecordType 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 © 2016 Omnia Consulting. All rights reserved.