public enum LabelPresentationValues extends java.lang.Enum<LabelPresentationValues>
List of label presentation values for the Data Element belonging to layout of Screen.
Enum Constant and Description |
---|
_1
Data Element topped by a single line column label.
|
_2
Data Element topped by a 2–line column label.
|
_3
Data Element topped by a 3–line column label.
|
_F
Data Element only.
|
_L
Data Element with long label, left-justifiedThe Data Element is preceded by the Data Element label, left-aligned, on 36 positions.
|
_M
Data Element with long label, right-justifiedThe Data Element is preceded by the Data Element label, right-aligned, on 36 positions.
|
_N
Data Element with long label, left-justified, trimmed right.
|
_R
Data Element with long relational label, left-justified.
|
_S |
_T
Data Element with short label, right-justified.
|
_U
Data Element with short label, left-justified, trimmed right.
|
NONE
Default value Defaults to the value specified in the Dialog.
|
Modifier and Type | Method and Description |
---|---|
static LabelPresentationValues |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LabelPresentationValues[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LabelPresentationValues _1
Data Element topped by a single line column label.
The Data Element is topped by the column label on one line.
public static final LabelPresentationValues _2
Data Element topped by a 2–line column label.
The Data Element is topped by the column label on two lines.
public static final LabelPresentationValues _3
Data Element topped by a 3–line column label.
The Data Element is topped by the column label on three lines.
public static final LabelPresentationValues _F
Data Element only.
The Data Element is displayed without any label.
public static final LabelPresentationValues _L
Data Element with long label, left-justified
The Data Element is preceded by the Data Element label, left-aligned, on 36 positions.
public static final LabelPresentationValues _M
Data Element with long label, right-justified
The Data Element is preceded by the Data Element label, right-aligned, on 36 positions.
public static final LabelPresentationValues _N
Data Element with long label, left-justified, trimmed right.
The Data Element is preceded by the Data Element label, left-aligned with the deletion of blanks on the right.
public static final LabelPresentationValues _R
Data Element with long relational label, left-justified.
The Data Element is preceded by the relational label, left-aligned on 18 positions.
public static final LabelPresentationValues _S
public static final LabelPresentationValues _T
Data Element with short label, right-justified.
The Data Element is preceded by the short label, right-aligned, on 18 positions.
public static final LabelPresentationValues _U
Data Element with short label, left-justified, trimmed right.
The Data Element is preceded by the short label, left-aligned, with the deletion of blanks on the right.
public static final LabelPresentationValues NONE
Default value Defaults to the value specified in the Dialog.
public static LabelPresentationValues 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 LabelPresentationValues[] values()
for (LabelPresentationValues c : LabelPresentationValues.values()) System.out.println(c);