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

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

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

List of Reports types.


Enum Constant Summary
_L
           
_P
           
_S
           
 
Method Summary
static ReportTypeValues valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ReportTypeValues[] 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

_L

public static final ReportTypeValues _L

Standard : for standard line printing, it is the default value.


_P

public static final ReportTypeValues _P

Printer 3800 with font : Layout of a Report to be printed on a 3800 printer, within character set codes specified in the Report layout lines (in column labeled 'C').


_S

public static final ReportTypeValues _S

Printer 3800 : Layout of a Report to be printed on a 3800 printer, without definition of character sets. For a Report used with MICRO FOCUS, this value generates a skip character.

Use the COBOL format to enter conditions but do not enter IF nor GO TO. Do not enter any period; they are generated automatically.

Method Detail

valueOf

public static ReportTypeValues 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 ReportTypeValues[] 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 (ReportTypeValues c : ReportTypeValues.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared