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

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

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

List of internal usages of Data Elements.


Enum Constant Summary
_0
           
_1
           
_2
           
_3
           
_4
           
_5
           
_6
           
_7
           
_8
           
_9
           
_C
           
_D
           
_F
           
_G
           
_H
           
_I
           
_J
           
_N
           
_O
           
_P
           
_Q
           
_R
           
_T
           
_U
           
_W
           
_X
           
_Y
           
_Z
           
INHERITED
           
 
Method Summary
static DataElementInternalUsageValues valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static DataElementInternalUsageValues[] 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

_0

public static final DataElementInternalUsageValues _0

COMPUTATIONAL-7

GCOS8


_1

public static final DataElementInternalUsageValues _1

DISPLAY SIGN LEADING SEPARATE - UNISYS 2200, GCOS8, IBM, TANDEM, GCOS7.

or NATIONAL SIGN IS LEADING SEPARATE CHARACTER for 'Unicode'-type Data Elements ('U' type).


_2

public static final DataElementInternalUsageValues _2

DISPLAY-2 GCOS8 = DISPLAY. Fields are compared in accordance with the commercial collating sequence and not in accordance with the standard BULL sequence.


_3

public static final DataElementInternalUsageValues _3

COMPUTATIONAL-3 IBM or equivalent.

COMPUTATIONAL GCOS7

PACKED-DECIMAL UNISYS 2200 (COBOL 85)


_4

public static final DataElementInternalUsageValues _4

DISPLAY-2 NCR (unsigned packed decimal)


_5

public static final DataElementInternalUsageValues _5

COMPUTATIONAL-1 GCOS7 GCOS8


_6

public static final DataElementInternalUsageValues _6

COMPUTATIONAL-2 GCOS7 GCOS8


_7

public static final DataElementInternalUsageValues _7

COMPUTATIONAL-5 ICL 2900.


_8

public static final DataElementInternalUsageValues _8

COMPUTATIONAL BULL 66 GCOS8.


_9

public static final DataElementInternalUsageValues _9

COMPUTATIONAL-3 GCOS7 and GCOS8.


_C

public static final DataElementInternalUsageValues _C

COMPUTATIONAL (binary), IBM or equivalent;

BINARY, IBM and COBOL II variant.


_D

public static final DataElementInternalUsageValues _D

DISPLAY (default option).

Required for date Data Elements.


_F

public static final DataElementInternalUsageValues _F

COMPUTATIONAL-1 IBM or equivalent.

COMPUTATIONAL-9 BULL GCOS7. COMPUTATIONAL-11 GCOS8.

Relational DBD: floating point, simple precision.


_G

public static final DataElementInternalUsageValues _G

COMPUTATIONAL SYNCHRONIZED RIGHT ICL 2900

COMPUTATIONAL-5 MICRO FOCUS.


_H

public static final DataElementInternalUsageValues _H

COMPUTATIONAL UNISYS 2200.

BINARY UNISYS 2200 (COBOL 85)


_I

public static final DataElementInternalUsageValues _I

DISPLAY-1 UNISYS 2200


_J

public static final DataElementInternalUsageValues _J

COMPUTATIONAL-6 GCOS8.

REAL UNISYS-A.


_N

public static final DataElementInternalUsageValues _N

COMPUTATIONAL-4 aligned on a half-byte. You must add the complement if the length is uneven.

NATIONAL (default usage) for 'Unicode'-type Data Elements ('U' type).


_O

public static final DataElementInternalUsageValues _O

COMPUTATIONAL-4 UNISYS 2200


_P

public static final DataElementInternalUsageValues _P

COMPUTATIONAL-1 GCOS8.


_Q

public static final DataElementInternalUsageValues _Q

COMPUTATIONAL GCOS8.


_R

public static final DataElementInternalUsageValues _R

COMPUTATIONAL SYNCHRONIZED RIGHT, IBM or equivalent; This value is preferable to 'C' when binary data is aligned on even addresses, since the corresponding COBOL statements are more efficient.


_T

public static final DataElementInternalUsageValues _T

COMPUTATIONAL-3 PACKED SYNC. GCOS8.


_U

public static final DataElementInternalUsageValues _U

COMPUTATIONAL-1 UNISYS 2200.


_W

public static final DataElementInternalUsageValues _W

COMPUTATIONAL-2 UNISYS 2200.

COMPUTATIONAL-12 GCOS8.

Relational database: floating point, double precision.


_X

public static final DataElementInternalUsageValues _X

DISPLAY SIGN IS TRAILING SEPARATE CHARACTER.

or NATIONAL SIGN IS TRAILING SEPARATE CHARACTER for 'Unicode'-type Data Elements ('U' type).


_Y

public static final DataElementInternalUsageValues _Y

DB-KEY GCOS8. POINTER IBM and MICRO FOCUS


_Z

public static final DataElementInternalUsageValues _Z

In batch mode only: this option, which is only used with an output format, generates a BLANK WHEN ZERO clause with the Batch Applications function.


INHERITED

public static final DataElementInternalUsageValues INHERITED

Value of the parent Data Element

Method Detail

valueOf

public static DataElementInternalUsageValues 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 DataElementInternalUsageValues[] 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 (DataElementInternalUsageValues c : DataElementInternalUsageValues.values())
    System.out.println(c);

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