public enum ReportCategoryTypeValues extends java.lang.Enum<ReportCategoryTypeValues>
List of category types for the Report.
Enum Constant and Description |
---|
_A
Header.
|
_I
Repetitive.
|
_Z
Footer.
|
NONE
Standard.
|
Modifier and Type | Method and Description |
---|---|
static ReportCategoryTypeValues |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ReportCategoryTypeValues[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReportCategoryTypeValues _A
Header.
This value applies to the repetitive categories only and indicates the first line of a top of page category (header).
Headers are automatically printed at the top of each page of a Report. They are also printed when the repetitive category lines exceed the number of lines per page allowed for the Report, causing a new page to be printed.
public static final ReportCategoryTypeValues _I
Repetitive.
This indicates the first line of a category printed several times (repetitive category). This value causes the generation of a subscript which controls the number of repetitions. This number may be fixed or variable.
public static final ReportCategoryTypeValues _Z
Footer.
This indicates the first line of an end of page category.
Footers are automatically printed when the repetitive category lines exceed the number of lines per page allowed for that Report.
public static final ReportCategoryTypeValues NONE
Standard.
This is the default option.
public static ReportCategoryTypeValues 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 ReportCategoryTypeValues[] values()
for (ReportCategoryTypeValues c : ReportCategoryTypeValues.values()) System.out.println(c);