public enum ScreenGenerationLimitValues extends java.lang.Enum<ScreenGenerationLimitValues>
List of limits of generation for segments - Logical Characteristics.
Enum Constant and Description |
---|
_P
No description of Segment.
|
_U
User-defined Segment access in structure code.
|
NONE
Automatic: The logical access is generated automatically, according to the use of the Segment.
|
Modifier and Type | Method and Description |
---|---|
static ScreenGenerationLimitValues |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ScreenGenerationLimitValues[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScreenGenerationLimitValues _P
No description of Segment. (organization different from X).
public static final ScreenGenerationLimitValues _U
User-defined Segment access in structure code. (organization different from X).
public static final ScreenGenerationLimitValues NONE
Automatic: The logical access is generated automatically, according to the use of the Segment.
public static ScreenGenerationLimitValues 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 ScreenGenerationLimitValues[] values()
for (ScreenGenerationLimitValues c : ScreenGenerationLimitValues.values()) System.out.println(c);