com.ibm.pdp.maf.rpp.pac.report

Enum ReportEditionLineTotalisationTypeValues

    • Enum Constant Summary

      Enum Constants 
      Enum Constant and Description
      _0 
      _1 
      _2

      Total (break level 2).

      _3

      Total (break level 3).

      _4

      Total (break level 4).

      _5

      Total (break level 5).

      _6

      Total (break level 6).

      _7

      Total (break level 7).

      _8

      Total (break level 8).

      _9

      Total (break level 9).

      _T 
      NONE 
      STAR 
    • Method Summary

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

      • _T

        public static final ReportEditionLineTotalisationTypeValues _T

        Detail not editable.

        This indicates a detail line containing fields whose values are to be accumulated for totalling but the line is not to be printed in the Report.

        There is a maximum of 6 such non editable lines in a Program. A category containing a detail line:

        • Cannot contain other detail lines,

        • Cannot contain a total line,

        • Can include other ordinary lines.

      • STAR

        public static final ReportEditionLineTotalisationTypeValues STAR

        Detail editable.

        This indicates a detail line containing fields whose values are to be accumulated for totalling. The lines will be printed in the Report.

        The logic for Data Elements to be totalled is generated only if the edition conditions specified for the category containing the detail line are met. There is a maximum of 6 such editable lines in a Program.

    • Method Detail

      • valueOf

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