beautypg.com

Addbyte, Addbytes, Adddouble – HP NonStop G-Series User Manual

Page 122

background image

Usage Sets the item specified in the name parameter at the index specified by itemNo with the string value specified by
the value parameter. If the item already exists, the value is overwritten.

Throws

java.lang.IllegalAccessError.

(field name) Attempt to set a value to an output parameter field.

java.lang.NoSuchFieldException.

(field name) Attempt to set a field which is not defined for this service.

addByte

Adds the byte input parameters.

void addByte( String name, byte val );

Usage The addByte() method adds specified byte items to the input parameters.

Throws

java.lang.IllegalAccessError.

(field name) Attempt to add a value to an input parameter field, or delete a value from an input parameter field.

java.lang.NoSuchFieldError.

(field name) Attempt to add or delete a field that is not defined for this service.

addBytes

Adds the byte array input parameter.

void addBytes( String name, byte[] val, int len );

Usage The addBytes() method adds the byte value (8-bit) of the item specified in the name parameter.

Throws

java.lang.IllegalAccessError.

(field name) Attempt to add a value to an input parameter field, or delete a value from an input parameter field.

java.lang.NoSuchFieldError.

(field name) Attempt to add or delete a field that is not defined for this service.

addDouble

Adds the double precision input parameter.

void addDouble( String name, double val );

Usage The addDouble() method adds the double precision value (64-bit) of the item specified in the name parameter.

Throws

java.lang.IllegalAccessError.

(field name) Attempt to add a value to an input parameter field, or delete a value from an input parameter field.

java.lang.NoSuchFieldError.