public enum DataElementDescriptionLineMoreValues extends java.lang.Enum<DataElementDescriptionLineMoreValues>
List of jump, action code or continuation values in description lines of Data Elements.
Enum Constant and Description |
---|
_1
New Line
|
_2
1 blank line + 1 new line
|
_3
2 blank lines + 1 new line
|
_4
3 blank lines + 1 new line
|
_5
4 blank lines + 1 new line
|
_6
5 blank lines + 1 new line
|
_7
6 blank lines + 1 new line
|
_8
7 blank lines + 1 new line
|
_9
8 blank lines + 1 new line
|
_A
Deletion (for line type I) or Display (for line type O)
|
_C
Creation (for line type I)
|
_D
Deletion (for line type I)
|
_E
End (for line type O)
|
_M
Modification (for line type I) or Update (for line type O)
|
_O
Call another screen (for line type O)
|
_P
Same page (for line type O)
|
_S
Next screen (for line type O)
|
_X
Implicit update (for line type I)
|
_Y
Other
|
_Z
Other
|
NONE
New Line
|
PLUS
This value indicates a continuation of a value range if it cannot fit on a single line
|
STAR
Page skip
|
Modifier and Type | Method and Description |
---|---|
static DataElementDescriptionLineMoreValues |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DataElementDescriptionLineMoreValues[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataElementDescriptionLineMoreValues _1
New Line
public static final DataElementDescriptionLineMoreValues _2
1 blank line + 1 new line
public static final DataElementDescriptionLineMoreValues _3
2 blank lines + 1 new line
public static final DataElementDescriptionLineMoreValues _4
3 blank lines + 1 new line
public static final DataElementDescriptionLineMoreValues _5
4 blank lines + 1 new line
public static final DataElementDescriptionLineMoreValues _6
5 blank lines + 1 new line
public static final DataElementDescriptionLineMoreValues _7
6 blank lines + 1 new line
public static final DataElementDescriptionLineMoreValues _8
7 blank lines + 1 new line
public static final DataElementDescriptionLineMoreValues _9
8 blank lines + 1 new line
public static final DataElementDescriptionLineMoreValues _A
Deletion (for line type I) or Display (for line type O)
public static final DataElementDescriptionLineMoreValues _C
Creation (for line type I)
public static final DataElementDescriptionLineMoreValues _D
Deletion (for line type I)
public static final DataElementDescriptionLineMoreValues _E
End (for line type O)
public static final DataElementDescriptionLineMoreValues _M
Modification (for line type I) or Update (for line type O)
public static final DataElementDescriptionLineMoreValues _O
Call another screen (for line type O)
public static final DataElementDescriptionLineMoreValues _P
Same page (for line type O)
public static final DataElementDescriptionLineMoreValues _S
Next screen (for line type O)
public static final DataElementDescriptionLineMoreValues _X
Implicit update (for line type I)
public static final DataElementDescriptionLineMoreValues _Y
Other
public static final DataElementDescriptionLineMoreValues _Z
Other
public static final DataElementDescriptionLineMoreValues NONE
New Line
public static final DataElementDescriptionLineMoreValues PLUS
This value indicates a continuation of a value range if it cannot fit on a single line
public static final DataElementDescriptionLineMoreValues STAR
Page skip
public static DataElementDescriptionLineMoreValues 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 DataElementDescriptionLineMoreValues[] values()
for (DataElementDescriptionLineMoreValues c : DataElementDescriptionLineMoreValues.values()) System.out.println(c);