public enum ScreenReceptionUseValues extends java.lang.Enum<ScreenReceptionUseValues>
List of values for reception uses of the Segment.
Enum Constant and Description |
---|
_C
For an organization different from 'X' only: Segment (deletion only)
|
_E
For an organization different from 'X': Existence validation to run.
|
_L
For an organization different from 'X': A simple read command is generated for the Segment.
|
_M
For an organization different from 'X': Updated Segment (modification only).
|
_N
For an organization different from 'X': No access statement is generated for this Segment in the validation and update processing (default).
|
_S
For an organization different from 'X' only: Updated Segment (deletion only).
|
_T
For an organization different from 'X': Updated Segment (creation, modification, and deletion).
|
_U
For an 'X' organization only: User-defined logical accesses
|
_X
For an organization different from 'X': Updated Segment (creation and modification only).
|
NONE
For an organization different from 'X': No access statement is generated for this Segment in the validation and update processing (default).
|
Modifier and Type | Method and Description |
---|---|
static ScreenReceptionUseValues |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ScreenReceptionUseValues[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScreenReceptionUseValues _C
For an organization different from 'X' only: Segment (deletion only)
public static final ScreenReceptionUseValues _E
For an organization different from 'X': Existence validation to run. A read command with the setting of an error code is generated (if it is not found).
For an 'X' organization: Server call for validation.
public static final ScreenReceptionUseValues _L
For an organization different from 'X': A simple read command is generated for the Segment.
For an 'X' organization: Server call for selection.
public static final ScreenReceptionUseValues _M
For an organization different from 'X': Updated Segment (modification only).
For an 'X' organization: Server call for validation and update.
public static final ScreenReceptionUseValues _N
For an organization different from 'X': No access statement is generated for this Segment in the validation and update processing (default).
For an 'X' organization: No Server call is generated.
public static final ScreenReceptionUseValues _S
For an organization different from 'X' only: Updated Segment (deletion only).
public static final ScreenReceptionUseValues _T
For an organization different from 'X': Updated Segment (creation, modification, and deletion). In these cases, the existence validations and the update statements corresponding to the selected options are generated.
If the Segment is related to a previous Segment, regardless of the indicated use, only the update commands for modification and creation are generated.
For an 'X' organization: Server call for validation, update, and selection.
public static final ScreenReceptionUseValues _U
For an 'X' organization only: User-defined logical accesses
public static final ScreenReceptionUseValues _X
For an organization different from 'X': Updated Segment (creation and modification only).
For an 'X' organization: Server call for validation and selection
public static final ScreenReceptionUseValues NONE
For an organization different from 'X': No access statement is generated for this Segment in the validation and update processing (default).
For an 'X' organization: No Server call is generated.
public static ScreenReceptionUseValues 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 ScreenReceptionUseValues[] values()
for (ScreenReceptionUseValues c : ScreenReceptionUseValues.values()) System.out.println(c);