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 |
_2 |
_3 |
_4 |
_5 |
_6 |
_7 |
_8 |
_9 |
_A |
_C |
_D |
_E |
_M |
_O |
_P |
_S |
_X |
_Y |
_Z |
NONE |
PLUS |
STAR |
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);