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

java.lang.Object
  extended by java.lang.Enum<ReportEditionLineTotalisationTypeValues>
      extended by com.ibm.pdp.maf.rpp.pac.report.ReportEditionLineTotalisationTypeValues
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ReportEditionLineTotalisationTypeValues>

public enum ReportEditionLineTotalisationTypeValues
extends java.lang.Enum<ReportEditionLineTotalisationTypeValues>

List of totalization types.


Enum Constant Summary
_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
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

_0

public static final ReportEditionLineTotalisationTypeValues _0

Global total.

This option indicates that a line will display the result of accumulated totals.


_1

public static final ReportEditionLineTotalisationTypeValues _1

Total (break level 1).

This option indicates a line for totalling at the control break level corresponding to a value 1.


_2

public static final ReportEditionLineTotalisationTypeValues _2

Total (break level 2).

This option indicates a line for totalling at the control break level corresponding to a value 2.


_3

public static final ReportEditionLineTotalisationTypeValues _3

Total (break level 3).

This option indicates a line for totalling at the control break level corresponding to a value 3.


_4

public static final ReportEditionLineTotalisationTypeValues _4

Total (break level 4).

This option indicates a line for totalling at the control break level corresponding to a value 4.


_5

public static final ReportEditionLineTotalisationTypeValues _5

Total (break level 5).

This option indicates a line for totalling at the control break level corresponding to a value 5.


_6

public static final ReportEditionLineTotalisationTypeValues _6

Total (break level 6).

This option indicates a line for totalling at the control break level corresponding to a value 6.


_7

public static final ReportEditionLineTotalisationTypeValues _7

Total (break level 7).

This option indicates a line for totalling at the control break level corresponding to a value 7.


_8

public static final ReportEditionLineTotalisationTypeValues _8

Total (break level 8).

This option indicates a line for totalling at the control break level corresponding to a value 8.


_9

public static final ReportEditionLineTotalisationTypeValues _9

Total (break level 9).

This option indicates a line for totalling at the control break level corresponding to a value 9.


_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:


NONE

public static final ReportEditionLineTotalisationTypeValues NONE

No total


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