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

Enum ScreenControlBreakValues

  • java.lang.Object
    • Enum Constant Summary

      Enum Constants 
      Enum Constant and Description
      _C 
      _E 
      _R 
      NONE 
    • Method Summary

      Methods 
      Modifier and Type Method and Description
      static ScreenControlBreakValues valueOf(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static ScreenControlBreakValues[] 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 ScreenControlBreakValues _C

        Display break for organizations different from X.

        Indicates that a Data Element, which belongs to a key in the repetitive category of a Screen, must remain constant during display.

      • _E

        public static final ScreenControlBreakValues _E

        For an SQL organization: Display control break. It causes the generation of an equal condition in the WHERE clause of the SQL DECLARE CURSOR statement (and not '>=', which is generated otherwise). The use of CURSOR is optimized in the repetitive category.

      • _R

        public static final ScreenControlBreakValues _R

        For Server only - Organization H D V

        Large reading of the Folder.

        Field required for each Segments associated with the Logical View, this View must belong to a dependent node of the Folder.

        The value must be set on each key Data Element corresponding to a key Data Element of the Logical View that belongs to the Folder's root node.

      • NONE

        public static final ScreenControlBreakValues NONE

        No control break for organizations different from X.

        Indicates that a Data Element, which belongs to a key in the repetitive category of a Screen, must remain constant during display.

    • Method Detail

      • valueOf

        public static ScreenControlBreakValues 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 ScreenControlBreakValues[] 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 (ScreenControlBreakValues c : ScreenControlBreakValues.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared