public enum ReportTypeValues extends java.lang.Enum<ReportTypeValues>
List of Reports types.
Modifier and Type | Method and Description |
---|---|
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.
|
public static final ReportTypeValues _L
Standard : for standard line printing, it is the default value.
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').
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.
public static ReportTypeValues valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static ReportTypeValues[] values()
for (ReportTypeValues c : ReportTypeValues.values()) System.out.println(c);