public enum ProgramFormatTypeValues extends java.lang.Enum<ProgramFormatTypeValues>
List of formats for non-printing Data Structure.
Enum Constant and Description |
---|
_E
Input Default value for Data Structures with a usage set to M: Transaction to be validated, N: Transaction not to be validated, or E: Transaction with error checking
|
_I
Internal Default value for Data Structures whose usage is NOT set to: M: Transaction to be validated, N: Transaction not to be validated, or E: Transaction with error checking
|
_S
Output
|
Modifier and Type | Method and Description |
---|---|
static ProgramFormatTypeValues |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ProgramFormatTypeValues[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProgramFormatTypeValues _E
Input Default value for Data Structures with a usage set to M: Transaction to be validated, N: Transaction not to be validated, or E: Transaction with error checking
public static final ProgramFormatTypeValues _I
Internal Default value for Data Structures whose usage is NOT set to: M: Transaction to be validated, N: Transaction not to be validated, or E: Transaction with error checking
public static final ProgramFormatTypeValues _S
Output
public static ProgramFormatTypeValues valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static ProgramFormatTypeValues[] values()
for (ProgramFormatTypeValues c : ProgramFormatTypeValues.values()) System.out.println(c);