public enum ProgramStructureValues extends java.lang.Enum<ProgramStructureValues>
List of structures of Program.
Modifier and Type | Method and Description |
---|---|
static ProgramStructureValues |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ProgramStructureValues[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProgramStructureValues _B
Batch program structure
It is the default option. It provides the general structure of an iterative program: beginning of loop (F05), end of run (F20), end of loop (F9099. GO TO F05).
public static final ProgramStructureValues _D
public static final ProgramStructureValues _F
public static final ProgramStructureValues _P
public static final ProgramStructureValues _S
public static final ProgramStructureValues _T
Online program structure
This option does not provide an iterative structure: no beginning of loop (F05), no end of run (F20), no end of loop (F9099. GO TO F05).
public static ProgramStructureValues 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 ProgramStructureValues[] values()
for (ProgramStructureValues c : ProgramStructureValues.values()) System.out.println(c);