Pathway/iTS Web Client Programming Manual (H06.03+, J06.03+)

Table Of Contents
Java Import Package Reference
HP NonStop Pathway/iTS Web Client Programming Manual520270-003
6-86
Class Pic9V
Method Constructor (Signed or Unsigned)
Syntax
public Pic9V (int numIntegerDigits,
int numFractionDigits,
boolean computational,
boolean signed)
Description
This form is used to construct these SCREEN COBOL types:
Parameters
Method Constructor (Sign Leading or Trailing)
Syntax
public Pic9V (int numIntegerDigits,
int numFractionDigits,
int signFlag)
SCREEN COBOL Type Java Type
PIC 9(m)V9(n) COMP new Pic9V (m, n, Pic9V.COMP, Pic9V.UNSIGNED)
PIC S9(m)V9(n) COMP new Pic9V (m, n, Pic9V.COMP, Pic9V.SIGNED)
PIC 9(m)V9(n) new Pic9V (m, n, Pic9V.DISPLAY,
Pic9V.UNSIGNED)
PIC S9(m)V9(n) new Pic9V (m, n, Pic9V.DISPLAY, Pic9V.SIGNED)
numIntegerDigits The number of digits in the integer portion of the
number; must be between 0 and 16, inclusive
numFractionDigits The number of digits in the fractional portion of the
number; must be between 0 and 16, inclusive; the sum
of numIntegerDigits and numFractionDigits
must be between 1 and 16, inclusive
computational Must be either Pic9V.COMP or Pic9V.DISPLAY
signed Must be either Pic9V.SIGNED or Pic9V.UNSIGNED