com.ibm.pdp.maf.rpp.pac.common.dialog

Enum ScreenReceptionUseValues

  • java.lang.Object
    • Enum Constant Summary

      Enum Constants 
      Enum Constant and Description
      _C 
      _E 
      _L 
      _M 
      _N 
      _S 
      _T 
      _U 
      _X 
      NONE 
    • Method Summary

      Methods 
      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.
      • 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

      • _C

        public static final ScreenReceptionUseValues _C

        For an organization different from 'X' only: Segment (deletion only)

      • _E

        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.

      • _L

        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.

      • _M

        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.

      • _N

        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.

      • _S

        public static final ScreenReceptionUseValues _S

        For an organization different from 'X' only: Updated Segment (deletion only).

      • _T

        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.

      • _X

        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

      • NONE

        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.

    • Method Detail

      • valueOf

        public static ScreenReceptionUseValues valueOf(java.lang.String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • values

        public static ScreenReceptionUseValues[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (ScreenReceptionUseValues c : ScreenReceptionUseValues.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared