public enum ReportLabelJumpTypeValues extends java.lang.Enum<ReportLabelJumpTypeValues>
List of jump types for labels.
Enum Constant and Description |
---|
_0 |
_1 |
_2 |
_3 |
_4 |
_5 |
_6 |
_7 |
_8 |
_9 |
STAR |
Modifier and Type | Method and Description |
---|---|
static ReportLabelJumpTypeValues |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ReportLabelJumpTypeValues[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReportLabelJumpTypeValues _0
Overprinting.
This value is reserved for type 3800 layouts. It is interpreted as a single-line spacing in the layout description with formatting.
public static final ReportLabelJumpTypeValues _1
Single line spacing .
public static final ReportLabelJumpTypeValues _2
2 lines spacing.
public static final ReportLabelJumpTypeValues _3
3 lines spacing.
public static final ReportLabelJumpTypeValues _4
4 lines spacing.
public static final ReportLabelJumpTypeValues _5
5 lines spacing.
public static final ReportLabelJumpTypeValues _6
6 lines spacing.
public static final ReportLabelJumpTypeValues _7
7 lines spacing.
public static final ReportLabelJumpTypeValues _8
8 lines spacing.
public static final ReportLabelJumpTypeValues _9
2 lines spacing.
public static final ReportLabelJumpTypeValues STAR
A page break is generated on the line.
public static ReportLabelJumpTypeValues 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 ReportLabelJumpTypeValues[] values()
for (ReportLabelJumpTypeValues c : ReportLabelJumpTypeValues.values()) System.out.println(c);