com.ibm.pdp.maf.rpp.pac.dataelement
Enum DataElementDescriptionLineMoreValues

java.lang.Object
  extended by java.lang.Enum<DataElementDescriptionLineMoreValues>
      extended by com.ibm.pdp.maf.rpp.pac.dataelement.DataElementDescriptionLineMoreValues
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<DataElementDescriptionLineMoreValues>

public enum DataElementDescriptionLineMoreValues
extends java.lang.Enum<DataElementDescriptionLineMoreValues>

List of jump, action code or continuation values in description lines of Data Elements.


Enum Constant Summary
_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
 
Method Summary
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.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

_1

public static final DataElementDescriptionLineMoreValues _1

New Line


_2

public static final DataElementDescriptionLineMoreValues _2

1 blank line + 1 new line


_3

public static final DataElementDescriptionLineMoreValues _3

2 blank lines + 1 new line


_4

public static final DataElementDescriptionLineMoreValues _4

3 blank lines + 1 new line


_5

public static final DataElementDescriptionLineMoreValues _5

4 blank lines + 1 new line


_6

public static final DataElementDescriptionLineMoreValues _6

5 blank lines + 1 new line


_7

public static final DataElementDescriptionLineMoreValues _7

6 blank lines + 1 new line


_8

public static final DataElementDescriptionLineMoreValues _8

7 blank lines + 1 new line


_9

public static final DataElementDescriptionLineMoreValues _9

8 blank lines + 1 new line


_A

public static final DataElementDescriptionLineMoreValues _A

Deletion (for line type I) or Display (for line type O)


_C

public static final DataElementDescriptionLineMoreValues _C

Creation (for line type I)


_D

public static final DataElementDescriptionLineMoreValues _D

Deletion (for line type I)


_E

public static final DataElementDescriptionLineMoreValues _E

End (for line type O)


_M

public static final DataElementDescriptionLineMoreValues _M

Modification (for line type I) or Update (for line type O)


_O

public static final DataElementDescriptionLineMoreValues _O

Call another screen (for line type O)


_P

public static final DataElementDescriptionLineMoreValues _P

Same page (for line type O)


_S

public static final DataElementDescriptionLineMoreValues _S

Next screen (for line type O)


_X

public static final DataElementDescriptionLineMoreValues _X

Implicit update (for line type I)


_Y

public static final DataElementDescriptionLineMoreValues _Y

Other


_Z

public static final DataElementDescriptionLineMoreValues _Z

Other


NONE

public static final DataElementDescriptionLineMoreValues NONE

New Line


PLUS

public static final DataElementDescriptionLineMoreValues PLUS

This value indicates a continuation of a value range if it cannot fit on a single line


STAR

public static final DataElementDescriptionLineMoreValues STAR

Page skip

Method Detail

valueOf

public static DataElementDescriptionLineMoreValues valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

values

public static DataElementDescriptionLineMoreValues[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (DataElementDescriptionLineMoreValues c : DataElementDescriptionLineMoreValues.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared