|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<ProgramStructureValues>
com.ibm.pdp.maf.rpp.pac.program.ProgramStructureValues
public enum ProgramStructureValues
List of structures of Program.
| Enum Constant Summary | |
|---|---|
_B
Batch program structureIt is the default option. |
|
_T
Online program structureThis option does not provide an iterative structure: no beginning of loop (F05), no end of run (F20), no end of loop (F9099. |
|
| Method Summary | |
|---|---|
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. |
| Methods inherited from class java.lang.Enum |
|---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
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 _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).
| Method Detail |
|---|
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 name
java.lang.NullPointerException - if the argument is nullpublic static ProgramStructureValues[] values()
for (ProgramStructureValues c : ProgramStructureValues.values()) System.out.println(c);
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||