public enum ProgramAccesModeValues extends java.lang.Enum<ProgramAccesModeValues>
List of access modes of Segments in Program.
Modifier and Type | Method and Description |
---|---|
static ProgramAccesModeValues |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ProgramAccesModeValues[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProgramAccesModeValues _D
Dynamic This value is reserved for VSAM files.
public static final ProgramAccesModeValues _R
Direct / Random The read function is not generated automatically
public static final ProgramAccesModeValues _S
Sequential Sequential access
public static ProgramAccesModeValues 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 ProgramAccesModeValues[] values()
for (ProgramAccesModeValues c : ProgramAccesModeValues.values()) System.out.println(c);